Ignore:
Timestamp:
Feb 21, 2007 12:40:05 AM (17 years ago)
Author:
bennylp
Message:

Merged the ICE branch into the trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/errno.h

    r974 r992  
    5151/** 
    5252 * @hideinitializer 
    53  * Invalid STUN message length. 
     53 * Invalid STUN message length 
    5454 */ 
    5555#define PJLIB_UTIL_ESTUNINMSGLEN    (PJLIB_UTIL_ERRNO_START+3)  /* 320003 */ 
    5656/** 
    5757 * @hideinitializer 
    58  * STUN attribute length error. 
     58 * Invalid STUN attribute length 
    5959 */ 
    6060#define PJLIB_UTIL_ESTUNINATTRLEN   (PJLIB_UTIL_ERRNO_START+4)  /* 320004 */ 
     
    246246 
    247247 
     248/************************************************************ 
     249 * NEW STUN ERROR 
     250 ***********************************************************/ 
     251/* Messaging errors */ 
     252/** 
     253 * @hideinitializer 
     254 * Invalid STUN attribute 
     255 */ 
     256#define PJLIB_UTIL_ESTUNINATTR      (PJLIB_UTIL_ERRNO_START+110)/* 320110 */ 
     257/** 
     258 * @hideinitializer 
     259 * Too many STUN attributes. 
     260 */ 
     261#define PJLIB_UTIL_ESTUNTOOMANYATTR (PJLIB_UTIL_ERRNO_START+111)/* 320111 */ 
     262/** 
     263 * @hideinitializer 
     264 * Unknown STUN attribute. 
     265 */ 
     266#define PJLIB_UTIL_ESTUNUNKNOWNATTR (PJLIB_UTIL_ERRNO_START+112)/* 320112 */ 
     267/** 
     268 * @hideinitializer 
     269 * Invalid socket address length. 
     270 */ 
     271#define PJLIB_UTIL_ESTUNINADDRLEN   (PJLIB_UTIL_ERRNO_START+113)/* 320113 */ 
     272/** 
     273 * @hideinitializer 
     274 * IPv6 attribute not supported 
     275 */ 
     276#define PJLIB_UTIL_ESTUNIPV6NOTSUPP (PJLIB_UTIL_ERRNO_START+113)/* 320113 */ 
     277/** 
     278 * @hideinitializer 
     279 * Expecting STUN response message. 
     280 */ 
     281#define PJLIB_UTIL_ESTUNNOTRESPONSE (PJLIB_UTIL_ERRNO_START+114)/* 320114 */ 
     282/** 
     283 * @hideinitializer 
     284 * Transaction ID mismatch. 
     285 */ 
     286#define PJLIB_UTIL_ESTUNINVALIDID   (PJLIB_UTIL_ERRNO_START+115)/* 320115 */ 
     287/** 
     288 * @hideinitializer 
     289 * Unable to find handler for the request. 
     290 */ 
     291#define PJLIB_UTIL_ESTUNNOHANDLER   (PJLIB_UTIL_ERRNO_START+116)/* 320116 */ 
     292 
     293 
     294#define PJ_STATUS_FROM_STUN_CODE(code)  -1 
     295 
     296 
     297 
     298 
    248299/** 
    249300 * @} 
Note: See TracChangeset for help on using the changeset viewer.