Class ServerPrefs
java.lang.Object
|
+----ServerPrefs
- public class ServerPrefs
- extends Object
NetRand Project
Software Engineering - CS536
University of Wisconsin - Milwaukee
Authors:
- Spring 1998 - Francis William Kasper
File: ServerPrefs.java
ServerPrefs contains parameters used by the RandomByteServer
-
collPort
- the port to listen for packets arriving from the clients
-
poolSize
- the maximum number of bytes the server should have in its pool
-
reqPort
- the port to accept request for random byte sequences on
-
reqPortQueue
- maximum number of connections to queue on the TCP request socket
-
reqSize
- the maximum number of bytes a user can obtain from the server at one time
-
ServerPrefs()
-
poolSize
int poolSize
- the maximum number of bytes the server should have in its pool
reqSize
int reqSize
- the maximum number of bytes a user can obtain from the server at one time
collPort
int collPort
- the port to listen for packets arriving from the clients
reqPort
int reqPort
- the port to accept request for random byte sequences on
reqPortQueue
int reqPortQueue
- maximum number of connections to queue on the TCP request socket
ServerPrefs
public ServerPrefs()