Changeset 7
- Timestamp:
- 02/01/10 12:49:39 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/org/opencsta/net/TCPClient.java (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/opencsta/net/TCPClient.java
r6 r7 41 41 int PORT ; 42 42 String SERVER_ADDRESS ; 43 private boolean REPLACEDLEWITHDLEDLE ;44 private boolean REPLACEDLEDLEWITHDLE ;43 private boolean REPLACEDLEWITHDLEDLE = false; 44 private boolean REPLACEDLEDLEWITHDLE = false; 45 45 private DataOutputStream out ; 46 46 private DataInputStream in ; … … 68 68 theProps = _theProps ; 69 69 CSTAClientCommunications = false ; 70 REPLACEDLEWITHDLEDLE = false; 71 REPLACEDLEDLEWITHDLE = false; 70 72 this.parent = parent ; 71 73 socket = null ; … … 83 85 clientlog.info(this.getClass().getName() + " -> " + "Setting SERVER_ADDRESS -> Getting property: " + APPNAME + "_SERVER_ADDRESS") ; 84 86 SERVER_ADDRESS = theProps.getProperty(APPNAME + "_SERVER_ADDRESS") ; 85 clientlog.info(this.getClass().getName() + " -> " + "REPLACEDLEWITHDLEDLE is set to " + REPLACEDLEWITHDLEDLE ) ;86 clientlog.info(this.getClass().getName() + " -> " + "REPLACEDLEDLEWITHDLE is set to " + REPLACEDLEDLEWITHDLE ) ;87 clientlog.info(this.getClass().getName() + " -> " + "CSTAClientCommunications is set to " + isCSTAClientCommunications() ) ;88 87 String logstr = "CSTAServer address: " + SERVER_ADDRESS ; 89 88 setSocket(new Socket(SERVER_ADDRESS, PORT)) ; … … 125 124 126 125 public void run(){ 127 setCSTAClientCommunications(false); 126 clientlog.info(this.getClass().getName() + " -> " + "run() REPLACEDLEWITHDLEDLE is set to " + REPLACEDLEWITHDLEDLE ) ; 127 clientlog.info(this.getClass().getName() + " -> " + "run() REPLACEDLEDLEWITHDLE is set to " + REPLACEDLEDLEWITHDLE ) ; 128 clientlog.info(this.getClass().getName() + " -> " + "run() CSTAClientCommunications is set to " + isCSTAClientCommunications() ) ; 128 129 if( isCSTAClientCommunications() ){ 129 130 internalComms() ;
