Class ServerPrefs

java.lang.Object
   |
   +----ServerPrefs

public class ServerPrefs
extends Object

NetRand Project

Software Engineering - CS536

University of Wisconsin - Milwaukee

Authors:


File: ServerPrefs.java

ServerPrefs contains parameters used by the RandomByteServer


Variable Index

 o collPort
the port to listen for packets arriving from the clients
 o poolSize
the maximum number of bytes the server should have in its pool
 o reqPort
the port to accept request for random byte sequences on
 o reqPortQueue
maximum number of connections to queue on the TCP request socket
 o reqSize
the maximum number of bytes a user can obtain from the server at one time

Constructor Index

 o ServerPrefs()

Variables

 o poolSize
 int poolSize
the maximum number of bytes the server should have in its pool

 o reqSize
 int reqSize
the maximum number of bytes a user can obtain from the server at one time

 o collPort
 int collPort
the port to listen for packets arriving from the clients

 o reqPort
 int reqPort
the port to accept request for random byte sequences on

 o reqPortQueue
 int reqPortQueue
maximum number of connections to queue on the TCP request socket

Constructors

 o ServerPrefs
 public ServerPrefs()