Re-enable STUN status 437 (No Binding) since this is used by TURN

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1443 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2007-09-20 11:30:30 +00:00
parent 6be3c73f5d
commit 0638120b60
2 changed files with 2 additions and 2 deletions

View File

@ -338,8 +338,8 @@ typedef enum pj_stun_status
//PJ_STUN_SC_MISSING_REALM = 434, /**< Missing Realm */
//PJ_STUN_SC_MISSING_NONCE = 435, /**< Missing Nonce */
//PJ_STUN_SC_UNKNOWN_USERNAME = 436, /**< Unknown Username */
//PJ_STUN_SC_NO_BINDING = 437, /**< No Binding. */
#endif
PJ_STUN_SC_NO_BINDING = 437, /**< No Binding. */
PJ_STUN_SC_STALE_NONCE = 438, /**< Stale Nonce */
PJ_STUN_SC_TRANSITIONING = 439, /**< Transitioning. */
PJ_STUN_SC_UNSUPP_TRANSPORT_PROTO = 442, /**< Unsupported Transport or

View File

@ -63,7 +63,7 @@ static struct
//{ PJ_STUN_SC_MISSING_REALM, "Missing Realm"},
//{ PJ_STUN_SC_MISSING_NONCE, "Missing Nonce"},
//{ PJ_STUN_SC_UNKNOWN_USERNAME, "Unknown Username"},
//{ PJ_STUN_SC_NO_BINDING, "No Binding"},
{ PJ_STUN_SC_NO_BINDING, "No Binding"},
{ PJ_STUN_SC_STALE_NONCE, "Stale Nonce"},
{ PJ_STUN_SC_TRANSITIONING, "Active Destination Already Set"},
{ PJ_STUN_SC_UNSUPP_TRANSPORT_PROTO, "Unsupported Transport Protocol"},