01: package CVS_Shared;
02:
03: public class Constants {
04:
05: public static final int PortNumber = 2727;
06:
07: // Sequence identifiers:
08:
09: // The three required calls for getting s synchronization process ready to go:
10: public final static int synronize_ClientInitiatorSocket = 101;
11: public final static int synronize_ServerInitiatorSocket = 102;
12: public final static int synronize_Request = 103;
13:
14: // checkin/checkout requests from synchronized clients.
15: // These are not connected with file transfers, but only change file flags.
16: public final static int checkInRequest = 201;
17: public final static int checkOutRequest = 202;
18:
19: } // Constants
|