Ignore:
Timestamp:
Jul 22, 2006 1:42:56 PM (18 years ago)
Author:
bennylp
Message:

Changed all public header files to compile correctly when -ansi and -pedantic is used, also when g++ is used

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/sock.h

    r484 r622  
    110110    PJ_MSG_OOB          = 0x01,     /**< Out-of-band messages.           */ 
    111111    PJ_MSG_PEEK         = 0x02,     /**< Peek, don't remove from buffer. */ 
    112     PJ_MSG_DONTROUTE    = 0x04,     /**< Don't route.                    */ 
     112    PJ_MSG_DONTROUTE    = 0x04      /**< Don't route.                    */ 
    113113} pj_sock_msg_flag; 
    114114 
     
    124124    PJ_SHUT_WR      = 1,    /**< Alias for SD_SEND.         */ 
    125125    PJ_SD_BOTH      = 2,    /**< No more send and receive.  */ 
    126     PJ_SHUT_RDWR    = 2,    /**< Alias for SD_BOTH.         */ 
     126    PJ_SHUT_RDWR    = 2     /**< Alias for SD_BOTH.         */ 
    127127} pj_socket_sd_type; 
    128128 
     
    380380    in_addr.s_addr = pj_ntohl(addr->sin_addr.s_addr); 
    381381    return in_addr; 
    382 }; 
     382} 
    383383 
    384384/** 
Note: See TracChangeset for help on using the changeset viewer.