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

Abandoning the RemoteComponent? struct; migrating to a simple socketFD
and boolean field.

Files:
1 modified

Legend:

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

    r186 r187  
    7777}; 
    7878 
    79  
    80 /* Contains information regarding a remote component in a VTCROSS system.  Note 
    81  * that this information is independent of component type, but technically will 
    82  * 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. 
    86  */ 
    87 struct RemoteComponent { 
    88     std::string serverName; 
    89     int32_t serverPort; 
    90     int32_t socketFD; 
    91 }; 
    92  
    9379#endif