Ignore:
Timestamp:
Dec 30, 2005 11:50:15 PM (18 years ago)
Author:
bennylp
Message:

Basic module, transport, and sending messages

File:
1 edited

Legend:

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

    r65 r106  
    9494/** 
    9595 * @hideinitializer 
    96  * Invalid message (syntax error) 
     96 * General invalid message error (e.g. syntax error) 
    9797 */ 
    9898#define PJSIP_EINVALIDMSG       (PJSIP_ERRNO_START_PJSIP + 20)  /* 171020 */ 
     
    114114/** 
    115115 * @hideinitializer 
     116 * Missing Request-URI. 
     117 */ 
     118#define PJSIP_EMISSINGREQURI    (PJSIP_ERRNO_START_PJSIP + 24)  /* 171024 */ 
     119/** 
     120 * @hideinitializer 
    116121 * Missing required header(s). 
    117122 */ 
    118 #define PJSIP_EMISSINGHDR       (PJSIP_ERRNO_START_PJSIP + 24)  /* 171024 */ 
     123#define PJSIP_EMISSINGHDR       (PJSIP_ERRNO_START_PJSIP + 25)  /* 171025 */ 
     124/** 
     125 * @hideinitializer 
     126 * Missing message body. 
     127 */ 
     128#define PJSIP_EMISSINGBODY      (PJSIP_ERRNO_START_PJSIP + 26)  /* 171026 */ 
    119129/** 
    120130 * @hideinitializer 
    121131 * Invalid Via header in response (sent-by, etc). 
    122132 */ 
    123 #define PJSIP_EINVALIDVIA       (PJSIP_ERRNO_START_PJSIP + 25)  /* 171025 */ 
     133#define PJSIP_EINVALIDVIA       (PJSIP_ERRNO_START_PJSIP + 27)  /* 171027 */ 
    124134/** 
    125135 * @hideinitializer 
    126136 * Multiple Via headers in response. 
    127137 */ 
    128 #define PJSIP_EMULTIPLEVIA      (PJSIP_ERRNO_START_PJSIP + 26)  /* 171026 */ 
     138#define PJSIP_EMULTIPLEVIA      (PJSIP_ERRNO_START_PJSIP + 28)  /* 171028 */ 
     139/** 
     140 * @hideinitializer 
     141 * Invalid request URI. 
     142 */ 
     143#define PJSIP_EINVALIDREQURI    (PJSIP_ERRNO_START_PJSIP + 29)  /* 171029 */ 
     144/** 
     145 * @hideinitializer 
     146 * Expecting request message. 
     147 */ 
     148#define PJSIP_ENOTREQUESTMSG    (PJSIP_ERRNO_START_PJSIP + 30)  /* 171030 */ 
     149/** 
     150 * @hideinitializer 
     151 * Expecting response message. 
     152 */ 
     153#define PJSIP_ENOTRESPONSEMSG   (PJSIP_ERRNO_START_PJSIP + 31)  /* 171031 */ 
     154 
    129155 
    130156/************************************************************ 
     
    145171 * Rx buffer overflow. See also PJSIP_EMSGTOOLONG. 
    146172 */ 
    147 #define PJSIP_ERXOVERFLOW         (PJSIP_ERRNO_START_PJSIP + 42)/* 171042 */ 
     173#define PJSIP_ERXOVERFLOW       (PJSIP_ERRNO_START_PJSIP + 42)  /* 171042 */ 
     174/** 
     175 * @hideinitializer 
     176 * This is not really an error, it just informs application that 
     177 * transmit data has been deleted on return of pjsip_tx_data_dec_ref(). 
     178 */ 
     179#define PJSIP_EBUFDESTROYED     (PJSIP_ERRNO_START_PJSIP + 43)  /* 171043 */ 
    148180 
    149181 
Note: See TracChangeset for help on using the changeset viewer.