Changeset 2331 for pjproject/trunk/pjlib/src/pj/sock_bsd.c
- Timestamp:
- Sep 27, 2008 1:16:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/sock_bsd.c
r2327 r2331 116 116 const pj_uint16_t PJ_SO_RCVBUF = SO_RCVBUF; 117 117 const pj_uint16_t PJ_SO_SNDBUF = SO_SNDBUF; 118 /* Multicasting is not supported e.g. in PocketPC 2003 SDK */ 119 #ifdef IP_MULTICAST_IF 118 120 const pj_uint16_t PJ_IP_MULTICAST_IF = IP_MULTICAST_IF; 119 121 const pj_uint16_t PJ_IP_MULTICAST_TTL = IP_MULTICAST_TTL; … … 121 123 const pj_uint16_t PJ_IP_ADD_MEMBERSHIP = IP_ADD_MEMBERSHIP; 122 124 const pj_uint16_t PJ_IP_DROP_MEMBERSHIP = IP_DROP_MEMBERSHIP; 123 125 #else 126 const pj_uint16_t PJ_IP_MULTICAST_IF = 0xFFFF; 127 const pj_uint16_t PJ_IP_MULTICAST_TTL = 0xFFFF; 128 const pj_uint16_t PJ_IP_MULTICAST_LOOP = 0xFFFF; 129 const pj_uint16_t PJ_IP_ADD_MEMBERSHIP = 0xFFFF; 130 const pj_uint16_t PJ_IP_DROP_MEMBERSHIP = 0xFFFF; 131 #endif 124 132 125 133 /* recv() and send() flags */
Note: See TracChangeset
for help on using the changeset viewer.