From a4c5175c8d5f2311ae1c146c7c26b3180a91bcd0 Mon Sep 17 00:00:00 2001 From: Steven Nay Date: Fri, 19 Nov 2010 00:43:04 -0700 Subject: [PATCH] Updated bug list and added a .gitignore file --- .gitignore | 2 ++ BUGS | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ab31b20 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.class + diff --git a/BUGS b/BUGS index a49df2b..e26b904 100644 --- a/BUGS +++ b/BUGS @@ -1,6 +1,10 @@ Blocking bugs ============= +Ant build script +For automating and cleaning up the build process. (There's nothing in place right now) + + Server connections and socket status Currently, the server tops out at 10 connections and can't figure out when a connection dies. The code to recycle dead connections is in place, but connection status doesn't return correct values. Fixing this bug may entail requiring the client to send a kill message to the server before it quits (although this cannot be relied on). At any rate, more research must be done into the behavior of sockets to determine when a socket dies.