Ignore:
Timestamp:
Aug 20, 2006 9:12:19 AM (18 years ago)
Author:
bennylp
Message:

Added initial "norefersub" (RFC 4488) implementation in PJSUA-LIB, and also properly register all supported SIP method, accepted content type, and supported extensions to endpoint.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-simple/publishc.c

    r685 r688  
    4141 
    4242 
     43/* Let's define this enum, so that it'll trigger compilation error 
     44 * when somebody define the same enum in sip_msg.h 
     45 */ 
     46enum 
     47{ 
     48    PJSIP_PUBLISH_METHOD = PJSIP_OTHER_METHOD, 
     49}; 
     50 
    4351const pjsip_method pjsip_publish_method =  
    4452{ 
    45     PJSIP_OTHER_METHOD, 
     53    PJSIP_PUBLISH_METHOD, 
    4654    { "PUBLISH", 7 } 
    4755}; 
Note: See TracChangeset for help on using the changeset viewer.