Show
Ignore:
Timestamp:
03/22/09 15:00:48 (15 years ago)
Author:
bhilburn
Message:

Added a new CreateClientSocket? function, using the new RemoteComponent? struct
type, to replace the old ClientSocket? function. Note that the old function is
left in until the new stuff gets tested and reviewed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/include/vtcross/containers.h

    r183 r184  
    8181 * that this information is independent of component type, but technically will 
    8282 * only ever be the SML or shell. 
     83 * 
     84 * TODO I'm not 100% certain I'm doing this in the most efficient way.  Need 
     85 * someone to look it over. 
    8386 */ 
    8487struct RemoteComponent { 
    8588    struct hostent *server; 
    8689    std::string serverName; 
    87     std::string serverPort; 
     90    int32_t serverPort; 
    8891    int32_t socketFD; 
    8992};