Show
Ignore:
Timestamp:
03/23/09 10:52:00 (15 years ago)
Author:
bhilburn
Message:

Implemented the GetRemoteComponentType? function is the components header
for all subclasses of 'component'.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/lib/socketcomm/socketcomm.cpp

    r189 r190  
    4646 
    4747int32_t  
    48 ClientSocket(const char* serverName, const char* portNumber) 
     48ClientSocket(const char* serverName, const char* serverPort) 
    4949{ 
    5050    int32_t socketFD; 
     
    5858        ERROR(1, "No server found by that hostname."); 
    5959 
    60     portNumber = atoi(portNumber); 
     60    portNumber = atoi(serverPort); 
    6161 
    6262    socketFD = socket(AF_INET, SOCK_STREAM, 0);