Changed the default server port to be used to 1234.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19402 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-11-30 20:48:16 +00:00
parent 02894e3670
commit 1d891ef80b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -13,8 +13,8 @@
#include <sys/socket.h>
#define PORT 40000 // the port client will be connecting to
#define MAXDATASIZE 100 // max number of bytes we can get at once
#define PORT 1234 // the port client will be connecting to
#define MAXDATASIZE 100 // max number of bytes we can get at once
int
+1 -1
View File
@@ -16,7 +16,7 @@
#include <unistd.h>
#define MYPORT 40000 // the port users will be connecting to
#define MYPORT 1234 // the port users will be connecting to
#define BACKLOG 10 // how many pending connections queue will hold
#define MAXDATASIZE 100