1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
|
<pre>Network Working Group A. Johnston
Request for Comments: 4317 Tello Corporation
Category: Informational R. Sparks
Estacado Systems
December 2005
<span class="h1">Session Description Protocol (SDP)</span>
<span class="h1">Offer/Answer Examples</span>
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2005).
Abstract
This document gives examples of Session Description Protocol (SDP)
offer/answer exchanges. Examples include codec negotiation and
selection, hold and resume, and addition and deletion of media
streams. The examples show multiple media types, bidirectional,
unidirectional, inactive streams, and dynamic payload types. Common
Third Party Call Control (3pcc) examples are also given.
<span class="grey">Johnston & Sparks Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
Table of Contents
<a href="#section-1">1</a>. Overview ........................................................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Codec Negotiation and Selection .................................<a href="#page-3">3</a>
<a href="#section-2.1">2.1</a>. Audio and Video 1 ..........................................<a href="#page-3">3</a>
<a href="#section-2.2">2.2</a>. Audio and Video 2 ..........................................<a href="#page-4">4</a>
<a href="#section-2.3">2.3</a>. Audio and Video 3 ..........................................<a href="#page-5">5</a>
<a href="#section-2.4">2.4</a>. Two Audio Streams ..........................................<a href="#page-6">6</a>
<a href="#section-2.5">2.5</a>. Audio and Video 4 ..........................................<a href="#page-7">7</a>
<a href="#section-2.6">2.6</a>. Audio Only 1 ...............................................<a href="#page-8">8</a>
<a href="#section-2.7">2.7</a>. Audio and Video 5 ..........................................<a href="#page-9">9</a>
<a href="#section-2.8">2.8</a>. Audio and Video 6 .........................................<a href="#page-10">10</a>
<a href="#section-3">3</a>. Hold and Resume Scenarios ......................................<a href="#page-12">12</a>
<a href="#section-3.1">3.1</a>. Hold and Unhold 1 .........................................<a href="#page-12">12</a>
<a href="#section-3.2">3.2</a>. Hold with Two Streams .....................................<a href="#page-13">13</a>
<a href="#section-4">4</a>. Addition and Deletion of Media Streams .........................<a href="#page-15">15</a>
<a href="#section-4.1">4.1</a>. Second Audio Stream Added .................................<a href="#page-15">15</a>
<a href="#section-4.2">4.2</a>. Audio, then Video Added ...................................<a href="#page-16">16</a>
<a href="#section-4.3">4.3</a>. Audio and Video, Then Video Deleted .......................<a href="#page-17">17</a>
<a href="#section-5">5</a>. Third Party Call Control (3pcc) ................................<a href="#page-19">19</a>
<a href="#section-5.1">5.1</a>. No Media, Then Audio Added ................................<a href="#page-19">19</a>
<a href="#section-5.2">5.2</a>. Hold and Unhold 2 .........................................<a href="#page-20">20</a>
<a href="#section-5.3">5.3</a>. Hold and Unhold 3 .........................................<a href="#page-21">21</a>
<a href="#section-6">6</a>. Security Considerations ........................................<a href="#page-22">22</a>
<a href="#section-7">7</a>. Informative References .........................................<a href="#page-22">22</a>
<span class="grey">Johnston & Sparks Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Overview</span>
This document describes offer/answer examples of Session Description
Protocol (SDP) based on <a href="./rfc3264">RFC 3264</a> [<a href="#ref-1" title=""An Offer/Answer Model with Session Description Protocol (SDP)"">1</a>]. The SDP in these examples is
defined by <a href="./rfc2327">RFC 2327</a> [<a href="#ref-2" title=""SDP: Session Description Protocol"">2</a>]. The offers and answers are assumed to be
transported using a protocol such as Session Initiation Protocol
(SIP) [<a href="#ref-3" title=""SIP: Session Initiation Protocol"">3</a>].
Examples include codec negotiation and selection, hold and resume,
and addition and deletion of media streams. The examples show
multiple media types, bidirectional, unidirectional, inactive
streams, and dynamic payload types. Common Third Party Call Control
(3pcc) [<a href="#ref-5" title=""Best Current Practices for Third Party Call Control (3pcc) in the Session Initiation Protocol (SIP)"">5</a>] examples are also given.
The following sections contain examples in which two parties, Alice
and Bob, exchange SDP offers, answers, and, in some cases, additional
offers and answers. Note that the subject line (s=) contains a
single space character.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Codec Negotiation and Selection</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Audio and Video 1</span>
This common scenario shows a video and audio session in which
multiple codecs are offered but only one is accepted. As a result of
the exchange shown below, Alice and Bob may send only PCMU audio and
MPV video. Note: Dynamic payload type 97 is used for iLBC codec [<a href="#ref-6" title=""Real-time Transport Protocol (RTP) Payload Format for internet Low Bit Rate Codec (iLBC) Speech"">6</a>].
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 8 97
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31 32
a=rtpmap:31 H261/90000
a=rtpmap:32 MPV/90000
<span class="grey">Johnston & Sparks Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49174 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=video 49170 RTP/AVP 32
a=rtpmap:32 MPV/90000
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Audio and Video 2</span>
Alice can support PCMU, PCMA, and iLBC codecs, but not more than one
at the same time. Alice offers all three to maximize chances of a
successful exchange, and Bob accepts two of them. An audio-only
session is established in the initial exchange between Alice and Bob,
using either PCMU or PCMA codecs (payload type in RTP packet tells
which is being used). Since Alice only supports one audio codec at a
time, a second offer is made with just that one codec, to limit the
codec choice to just one.
Note: the version number is incremented in both SDP messages in the
second exchange. After this exchange, only the PCMU codec may be
used for media session between Alice and Bob.
Note: The declined video stream still present in the second exchange
of SDP with ports set to zero.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 8 97
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31 32
a=rtpmap:31 H261/90000
a=rtpmap:32 MPV/90000
<span class="grey">Johnston & Sparks Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 0 8
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
m=video 0 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 51372 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=video 0 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=video 0 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Audio and Video 3</span>
Alice offers three audio and two video codecs, while Bob accepts with
a single audio and video codec. As a result of this exchange, Bob
and Alice use iLBC for audio and H261 for video.
Note: change of dynamic payload type from 97 to 99 between the offer
and the answer is OK since the same codec is referenced.
<span class="grey">Johnston & Sparks Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 8 97
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31 32
a=rtpmap:31 H261/90000
a=rtpmap:32 MPV/90000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 99
a=rtpmap:99 iLBC/8000
m=video 51374 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Two Audio Streams</span>
In this example, Alice wishes to establish separate audio streams,
one for normal audio and the other for telephone-events. Alice
offers two separate streams, one audio with two codecs and the other
with <a href="./rfc2833">RFC 2833</a> [<a href="#ref-4" title=""RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals"">4</a>] tones (for DTMF). Bob accepts both audio streams
choosing the iLBC codec and telephone-events.
<span class="grey">Johnston & Sparks Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 97
a=rtpmap:0 PCMU/8000
a=rtpmap:97 iLBC/8000
m=audio 49172 RTP/AVP 98
a=rtpmap:98 telephone-event/8000
a=sendonly
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=audio 49174 RTP/AVP 98
a=rtpmap:98 telephone-event/8000
a=recvonly
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Audio and Video 4</span>
Alice and Bob establish an audio and video session with a single
audio and video codec. In a second exchange, Bob changes his address
for media and Alice accepts with the same SDP as the initial exchange
(and as a result does not increment the version number).
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="grey">Johnston & Sparks Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49174 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 49170 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 newhost.biloxi.example.com
t=0 0
m=audio 49178 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 49188 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="h3"><a class="selflink" id="section-2.6" href="#section-2.6">2.6</a>. Audio Only 1</span>
Alice wishes to establish an audio session with Bob using either PCMU
codec or iLBC codec with <a href="./rfc2833">RFC2833</a> tones, but not both at the same
time. The offer contains these two media streams. Bob declines the
first one and accepts the second one. If both media streams had been
accepted, Alice would have sent a second declining one of the
streams, as shown in <a href="#section-4.3">Section 4.3</a>.
<span class="grey">Johnston & Sparks Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=audio 51372 RTP/AVP 97 101
a=rtpmap:97 iLBC/8000
a=rtpmap:101 telephone-event/8000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 0 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=audio 49170 RTP/AVP 97 101
a=rtpmap:97 iLBC/8000
a=rtpmap:101 telephone-event/8000
<span class="h3"><a class="selflink" id="section-2.7" href="#section-2.7">2.7</a>. Audio and Video 5</span>
Alice and Bob establish an audio and video session in the first
exchange with a single audio and video codec. In the second
exchange, Alice adds a second video codec, which Bob accepts. This
allows Alice and Bob to switch between the two video codecs without
another offer/answer exchange.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 99
a=rtpmap:99 iLBC/8000
m=video 51372 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="grey">Johnston & Sparks Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 99
a=rtpmap:99 iLBC/8000
m=video 51374 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 99
a=rtpmap:99 iLBC/8000
m=video 51372 RTP/AVP 31 32
a=rtpmap:31 H261/90000
a=rtpmap:32 MPV/90000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 99
a=rtpmap:99 iLBC/8000
m=video 51374 RTP/AVP 31 32
a=rtpmap:31 H261/90000
a=rtpmap:32 MPV/90000
<span class="h3"><a class="selflink" id="section-2.8" href="#section-2.8">2.8</a>. Audio and Video 6</span>
This example shows an audio and video offer that is accepted, but the
answerer wants the video sent to a different address than that of the
audio. This is a common scenario in conferencing where the video and
audio mixing utilizes different servers. In this example, Alice
offers audio and video, and Bob accepts.
<span class="grey">Johnston & Sparks Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 8 97
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31 32
a=rtpmap:31 H261/90000
a=rtpmap:32 MPV/90000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49174 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=video 49172 RTP/AVP 32
c=IN IP4 otherhost.biloxi.example.com
a=rtpmap:32 MPV/90000
<span class="grey">Johnston & Sparks Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Hold and Resume Scenarios</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Hold and Unhold 1</span>
Alice calls Bob, but when Bob answers he places Alice on hold. Bob
then takes Alice off hold in the second offer. Alice changes port
number in the second exchange. The media session between Alice and
Bob is now active after Alice's second answer. Note that a=sendrecv
could be present in both second offer and answer exchange. This is a
common flow in 3pcc [<a href="#ref-5" title=""Best Current Practices for Third Party Call Control (3pcc) in the Session Initiation Protocol (SIP)"">5</a>] scenarios.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 97
a=rtpmap:0 PCMU/8000
a=rtpmap:97 iLBC/8000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 placeholder.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 97
a=rtpmap:97 iLBC/8000
a=sendonly
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
<span class="grey">Johnston & Sparks Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49178 RTP/AVP 97
a=rtpmap:97 iLBC/8000
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Hold with Two Streams</span>
In this example, two audio streams have been established in the first
offer/answer exchange. In this second offer/answer exchange, one of
the audio streams is placed on hold. Alice offers two media streams,
a bidirectional audio stream and a send-only telephone event stream.
Bob accepts both streams. Bob then puts Alice's audio stream on hold
but not the tone stream. Alice responds with identical SDP to the
initial offer.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 97
a=rtpmap:0 PCMU/8000
a=rtpmap:97 iLBC/8000
m=audio 49172 RTP/AVP 98
a=rtpmap:98 telephone-event/8000
a=sendonly
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=audio 49174 RTP/AVP 98
a=rtpmap:98 telephone-event/8000
a=recvonly
<span class="grey">Johnston & Sparks Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 97
a=rtpmap:97 iLBC/8000
a=sendonly
m=audio 49174 RTP/AVP 98
a=rtpmap:98 telephone-event/8000
a=recvonly
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 97
a=rtpmap:0 PCMU/8000
a=rtpmap:97 iLBC/8000
m=audio 49172 RTP/AVP 98
a=rtpmap:98 telephone-event/8000
a=sendonly
<span class="grey">Johnston & Sparks Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Addition and Deletion of Media Streams</span>
This section shows addition and deletion of media streams.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Second Audio Stream Added</span>
In this example, the first offer/answer exchange establishes a single
audio stream with a single codec. The second offer/answer exchange
adds a second audio stream for telephone events. The second stream
is added by Bob's media server (different connection address) to
receive <a href="./rfc2833">RFC 2833</a> telephone-events (DTMF digits, typically) from
Alice. Alice accepts. Even though the second stream is
unidirectional, Alice receives RTCP packets on port 49173 from the
media server.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0 97
a=rtpmap:0 PCMU/8000
a=rtpmap:97 iLBC/8000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
<span class="grey">Johnston & Sparks Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=audio 48282 RTP/AVP 98
c=IN IP4 mediaserver.biloxi.example.com
a=rtpmap:98 telephone-event/8000
a=recvonly
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=audio 49172 RTP/AVP 98
c=IN IP4 host.atlanta.example.com
a=rtpmap:98 telephone-event/8000
a=sendonly
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Audio, then Video Added</span>
An audio-only session is established in the initial exchange between
Alice and Bob using PCMU codec. Alice adds a video stream that is
accepted by Bob.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0
a=rtpmap:0 PCMU/8000
<span class="grey">Johnston & Sparks Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 0
a=rtpmap:0 PCMU/8000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=video 49172 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 0
a=rtpmap:0 PCMU/8000
m=video 49168 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Audio and Video, Then Video Deleted</span>
Alice and Bob establish an audio and video session. In a second
exchange, Bob deletes the video session, resulting in an audio-only
session.
<span class="grey">Johnston & Sparks Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 51372 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49174 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 49170 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49174 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 0 RTP/AVP 31
a=rtpmap:31 H261/90000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
m=video 0 RTP/AVP 31
a=rtpmap:31 H261/90000
<span class="grey">Johnston & Sparks Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Third Party Call Control (3pcc)</span>
This section shows examples common in Third Party Call Control (3pcc)
flows [<a href="#ref-5" title=""Best Current Practices for Third Party Call Control (3pcc) in the Session Initiation Protocol (SIP)"">5</a>]. Call hold and resume flows are also common in 3pcc.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. No Media, Then Audio Added</span>
The first offer from Alice contains no media lines, so Bob accepts
with no media lines. In the second exchange, Alice adds an audio
stream that Bob accepts.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 97
a=rtpmap:97 iLBC/8000
<span class="grey">Johnston & Sparks Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Hold and Unhold 2</span>
The first offer from Alice contains the connection address 0.0.0.0
and a random port number, which means that Bob can not send media to
Alice (the media stream is "black holed" or "bh"). Bob accepts with
normal SDP. In the second exchange, Alice changes the connection
address, Bob accepts, and a media session is established.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 0.0.0.0
t=0 0
m=audio 23442 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=alice 2890844526 2890844527 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
<span class="grey">Johnston & Sparks Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Hold and Unhold 3</span>
The first offer from Alice contains an audio stream, but the answer
from Bob contains the connection address 0.0.0.0 and a random port
number, which means that Alice can not send media to Bob (the media
stream is "black holed" or "bh"). In the second exchange, Bob
changes the connection address, Alice accepts, and a media session is
established.
[<a id="ref-Offer">Offer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Answer">Answer</a>]
v=0
o=bob 2808844564 2808844564 IN IP4 host.biloxi.example.com
s=
c=IN IP4 0.0.0.0
t=0 0
m=audio 9322 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Second-Offer">Second-Offer</a>]
v=0
o=bob 2808844564 2808844565 IN IP4 host.biloxi.example.com
s=
c=IN IP4 host.biloxi.example.com
t=0 0
m=audio 49172 RTP/AVP 97
a=rtpmap:97 iLBC/8000
[<a id="ref-Second-Answer">Second-Answer</a>]
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 97
a=rtpmap:97 iLBC/8000
<span class="grey">Johnston & Sparks Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
SDP offer and answer messages can contain private information about
addresses and sessions to be established between parties. If this
information needs to be kept private, some security mechanism in the
protocol used to carry the offers and answers must be used. For SIP,
this means using TLS transport and/or S/MIME encryption of the SDP
message body.
It is important that SDP offer and answer messages be properly
authenticated and authorized before they are used to establish a
media session. Examples of SIP mechanisms include SIP Digest, certs,
and cryptographically-verified SIP identity.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Informative References</span>
[<a id="ref-1">1</a>] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model with
Session Description Protocol (SDP)", <a href="./rfc3264">RFC 3264</a>, June 2002.
[<a id="ref-2">2</a>] Handley, M. and V. Jacobson, "SDP: Session Description
Protocol", <a href="./rfc2327">RFC 2327</a>, April 1998.
[<a id="ref-3">3</a>] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston, A.,
Peterson, J., Sparks, R., Handley, M., and E. Schooler, "SIP:
Session Initiation Protocol", <a href="./rfc3261">RFC 3261</a>, June 2002.
[<a id="ref-4">4</a>] Schulzrinne, H. and S. Petrack, "RTP Payload for DTMF Digits,
Telephony Tones and Telephony Signals", <a href="./rfc2833">RFC 2833</a>, May 2000.
[<a id="ref-5">5</a>] Rosenberg, J., Peterson, J., Schulzrinne, H., and G. Camarillo,
"Best Current Practices for Third Party Call Control (3pcc) in
the Session Initiation Protocol (SIP)", <a href="https://www.rfc-editor.org/bcp/bcp85">BCP 85</a>, <a href="./rfc3725">RFC 3725</a>,
April 2004.
[<a id="ref-6">6</a>] Duric, A. and S. Andersen, "Real-time Transport Protocol (RTP)
Payload Format for internet Low Bit Rate Codec (iLBC) Speech",
<a href="./rfc3952">RFC 3952</a>, December 2004.
<span class="grey">Johnston & Sparks Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
Authors' Addresses
Alan Johnston
Tello Corporation
999 Baker Way, Suite 250
San Mateo, CA 94404
EMail: ajohnston@tello.com
Robert J. Sparks
Estacado Systems
EMail: rjsparks@estacado.net
<span class="grey">Johnston & Sparks Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4317">RFC 4317</a> SDP Offer/Answer Examples December 2005</span>
Full Copyright Statement
Copyright (C) The Internet Society (2005).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Johnston & Sparks Informational [Page 24]
</pre>
|