Ignore:
Timestamp:
Feb 7, 2006 12:34:58 PM (18 years ago)
Author:
bennylp
Message:

Added STATE_REMOTE_OFFER state in negotiator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/errno.h

    r129 r140  
    150150/** 
    151151 * @hideinitializer 
     152 * No initial local SDP. 
     153 */ 
     154#define PJMEDIA_SDPNEG_ENOINITIAL   (PJMEDIA_ERRNO_START+41)    /* 220041 */ 
     155/** 
     156 * @hideinitializer 
    152157 * No currently active SDP. 
    153158 */ 
    154 #define PJMEDIA_SDPNEG_ENOACTIVE    (PJMEDIA_ERRNO_START+41)    /* 220041 */ 
     159#define PJMEDIA_SDPNEG_ENOACTIVE    (PJMEDIA_ERRNO_START+42)    /* 220042 */ 
     160/** 
     161 * @hideinitializer 
     162 * No current offer or answer. 
     163 */ 
     164#define PJMEDIA_SDPNEG_ENONEG       (PJMEDIA_ERRNO_START+43)    /* 220043 */ 
    155165/** 
    156166 * @hideinitializer 
    157167 * Media count mismatch in offer and answer. 
    158168 */ 
    159 #define PJMEDIA_SDPNEG_EMISMEDIA    (PJMEDIA_ERRNO_START+42)    /* 220042 */ 
     169#define PJMEDIA_SDPNEG_EMISMEDIA    (PJMEDIA_ERRNO_START+44)    /* 220044 */ 
    160170/** 
    161171 * @hideinitializer 
    162172 * Media type is different in the remote answer. 
    163173 */ 
    164 #define PJMEDIA_SDPNEG_EINVANSMEDIA (PJMEDIA_ERRNO_START+43)    /* 220043 */ 
     174#define PJMEDIA_SDPNEG_EINVANSMEDIA (PJMEDIA_ERRNO_START+45)    /* 220045 */ 
    165175/** 
    166176 * @hideinitializer 
    167177 * Transport type is different in the remote answer. 
    168178 */ 
    169 #define PJMEDIA_SDPNEG_EINVANSTP    (PJMEDIA_ERRNO_START+44)    /* 220044 */ 
     179#define PJMEDIA_SDPNEG_EINVANSTP    (PJMEDIA_ERRNO_START+46)    /* 220046 */ 
    170180/** 
    171181 * @hideinitializer 
    172182 * No common media payload is provided in the answer. 
    173183 */ 
    174 #define PJMEDIA_SDPNEG_EANSNOMEDIA  (PJMEDIA_ERRNO_START+45)    /* 220045 */ 
     184#define PJMEDIA_SDPNEG_EANSNOMEDIA  (PJMEDIA_ERRNO_START+47)    /* 220047 */ 
     185/** 
     186 * @hideinitializer 
     187 * No media is active after negotiation. 
     188 */ 
     189#define PJMEDIA_SDPNEG_ENOMEDIA     (PJMEDIA_ERRNO_START+48)    /* 220048 */ 
    175190 
    176191 
Note: See TracChangeset for help on using the changeset viewer.