From ae82027a9bd4e75582f9499d4006b18c29a4129c Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Mon, 4 Nov 2024 21:38:50 +0200 Subject: Added basic TCP networking for the server. The client's networking is still very experimental and the actual protocol is not yet specified for either side. --- src/main/scala/Server/constants.scala | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main/scala/Server/constants.scala (limited to 'src/main/scala/Server/constants.scala') diff --git a/src/main/scala/Server/constants.scala b/src/main/scala/Server/constants.scala new file mode 100644 index 0000000..4260a60 --- /dev/null +++ b/src/main/scala/Server/constants.scala @@ -0,0 +1,6 @@ + +package o1game.constants + +val MAX_MSG_SIZE = 1024 // bytes +val LF: Byte = 10 +val POLL_INTERVAL = 100 // millisec. -- cgit v1.2.3