Changeset 66:ceb29224b3ad in mediastreamer2 for linphone/oRTP/src/stun.c
- Timestamp:
- Oct 5, 2008 4:35:36 PM (5 years ago)
- Branch:
- default
- File:
-
- 1 edited
-
linphone/oRTP/src/stun.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linphone/oRTP/src/stun.c
r15 r66 381 381 } 382 382 } 383 else if (atrType == Username)383 else if (atrType == STUNUsername) 384 384 { 385 385 msg->hasUsername = TRUE; … … 395 395 } 396 396 } 397 else if (atrType == Password)397 else if (atrType == STUNPassword) 398 398 { 399 399 msg->hasPassword = TRUE; … … 678 678 { 679 679 if (verbose) ortp_message("stun: Encoding Username: %s\n", msg->username.value ); 680 ptr = encodeAtrString(ptr, Username, &msg->username);680 ptr = encodeAtrString(ptr, STUNUsername, &msg->username); 681 681 } 682 682 if (msg->hasPassword) 683 683 { 684 684 if (verbose) ortp_message("stun: Encoding Password: %s\n", msg->password.value ); 685 ptr = encodeAtrString(ptr, Password, &msg->password);685 ptr = encodeAtrString(ptr, STUNPassword, &msg->password); 686 686 } 687 687 if (msg->hasErrorCode)
Note: See TracChangeset
for help on using the changeset viewer.
