Changeset 3478 for pjproject/trunk/pjlib/include/pj/sock.h
- Timestamp:
- Mar 23, 2011 6:08:36 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/sock.h
r3145 r3478 298 298 extern const pj_uint16_t PJ_SO_REUSEADDR; 299 299 300 /** Do not generate SIGPIPE. @see pj_SO_NOSIGPIPE */ 301 extern const pj_uint16_t PJ_SO_NOSIGPIPE; 302 300 303 /** Set the protocol-defined priority for all packets to be sent on socket. 301 304 */ … … 334 337 PJ_DECL(pj_uint16_t) pj_SO_REUSEADDR(void); 335 338 339 /** Get #PJ_SO_NOSIGPIPE constant */ 340 PJ_DECL(pj_uint16_t) pj_SO_NOSIGPIPE(void); 341 336 342 /** Get #PJ_SO_PRIORITY constant */ 337 343 PJ_DECL(pj_uint16_t) pj_SO_PRIORITY(void); … … 366 372 /** Get #PJ_SO_REUSEADDR constant */ 367 373 # define pj_SO_REUSEADDR() PJ_SO_REUSEADDR 374 375 /** Get #PJ_SO_NOSIGPIPE constant */ 376 # define pj_SO_NOSIGPIPE() PJ_SO_NOSIGPIPE 368 377 369 378 /** Get #PJ_SO_PRIORITY constant */
Note: See TracChangeset
for help on using the changeset viewer.