Show
Ignore:
Timestamp:
05/29/09 17:15:15 (15 years ago)
Author:
wrodgers
Message:

Minor changes to support SML.

Files:
1 modified

Legend:

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

    r255 r268  
    8383struct Service { 
    8484    std::string name; 
    85     uint16_t socketFD; 
     85    int32_t socketFD; 
     86    int32_t componentID; 
     87    uint16_t num_conds; 
     88    bool cond_flag; 
     89    std::string input[3]; 
     90    std::string output[3]; 
    8691};  
    8792 
     
    95100    uint32_t numServices; 
    96101    Service *services; 
     102    std::string input[3]; 
     103    std::string output[3]; 
    97104}; 
    98105 
     
    101108struct CE_Reg { 
    102109    int32_t ID_num; 
    103     sockaddr_in *sock_ptr; 
    104     socklen_t sock_len; 
     110    //sockaddr_in *sock_ptr; 
     111    //socklen_t sock_len; 
     112    int32_t FD; 
    105113}; 
    106114