summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@cohens.org.il>2013-12-05 11:20:26 +0200
committerTzafrir Cohen <tzafrir@cohens.org.il>2013-12-05 12:39:03 +0200
commitf8c09ce8db590dc604008f82252d36ba02fc1c98 (patch)
treed5c4495036f0404c0c8ecdc4a3a875b8c235d3b1
parent6ef33ec2cead34d82a29e696a3188f4bd0a45fd4 (diff)
Update tasks
-rw-r--r--src/Client/ChatClient.java4
-rw-r--r--src/Server/ChatServer.java9
2 files changed, 13 insertions, 0 deletions
diff --git a/src/Client/ChatClient.java b/src/Client/ChatClient.java
index c4b0678..4d6567b 100644
--- a/src/Client/ChatClient.java
+++ b/src/Client/ChatClient.java
@@ -117,12 +117,16 @@ public class ChatClient
*
* * Fix or remove all the fixme-s.
* * Closing the program (Close, ALT-F4) does not end the process
+ * * Keep channels up: PING occasionally
* * The output buffer does not have a scroll bar.
* * Pressing Enter in the message line does not send text.
+ * * Configuration file to save the nick?
+ * * History log?
* * It may be handy to implement other client commands:
* - /NICK - changes the nick
* - /CLEAR - clears the output window
* - /SAY - print a message directly to output window
* - // - sends just a leading '/' (in case you want to send '/NICK whatever' to the channel
* - /HELP - print a help message to the user
+ * * Command-line client - useful for testing.
*/
diff --git a/src/Server/ChatServer.java b/src/Server/ChatServer.java
index f9a233f..0a384ba 100644
--- a/src/Server/ChatServer.java
+++ b/src/Server/ChatServer.java
@@ -44,3 +44,12 @@ public class ChatServer
}
}
+
+/** Tasks
+ *
+ * * Allow listening on a different port (from command-line?)
+ * * Have a test server running on cohens.org.il
+ * * Send requests to all channels (use list)
+ * * Keep channels up: PING occasionally
+ * * Graphical interface for server
+ */