Ignore:
Timestamp:
Nov 18, 2005 10:43:42 PM (17 years ago)
Author:
bennylp
Message:

The BIG transport modifications

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_errno.h

    r51 r54  
    5555/** 
    5656 * @hideinitializer 
     57 * Invalid message (syntax error) 
     58 */ 
     59#define PJSIP_EINVALIDMSG       (PJSIP_ERRNO_START_PJSIP + 0) 
     60/** 
     61 * @hideinitializer 
    5762 * Missing required header(s). 
    5863 */ 
     
    98103 */ 
    99104#define PJSIP_EINVALIDVIA       (PJSIP_ERRNO_START_PJSIP + 9) 
     105/** 
     106 * @hideinitializer 
     107 * Multiple Via headers in response. 
     108 */ 
     109#define PJSIP_EMULTIPLEVIA      (PJSIP_ERRNO_START_PJSIP + 9) 
     110/** 
     111 * @hideinitializer 
     112 * SIP object is busy. 
     113 */ 
     114#define PJSIP_EBUSY             (PJSIP_ERRNO_START_PJSIP + 10) 
     115/** 
     116 * @hideinitializer 
     117 * SIP object with the same type already exists. 
     118 */ 
     119#define PJSIP_ETYPEEXISTS       (PJSIP_ERRNO_START_PJSIP + 11) 
     120 
    100121 
    101122 
Note: See TracChangeset for help on using the changeset viewer.