libsrt-sys 1.4.13

Bindings for libsrt
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
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
SRT Socket Options
==================

There is a general method of setting options on a socket in the SRT C API, similar
to the system `setsockopt/getsockopt` functions.

**NOTE**: This document replaces the socket option description originally 
in [api.md](https://github.com/Haivision/srt/blob/master/docs/API.md) 

1. [Types used in socket options]#types-used-in-socket-options
   - [List of options]#list-of-options
   - [Option Descriptions]#option-descriptions
2. [Enumeration types used in options]#enumeration-types-used-in-options
   - [`SRT_TRANSTYPE`]#1-srt_transtype
   - [`SRT_KM_STATE`]#2-srt_km_state
3. [Getting and setting options]#getting-and-setting-options


Types used in socket options
----------------------------

Possible types of socket options are:

* `int32_t` - This type can usually be treated as an `int` equivalent since it 
does not change size on 64-bit systems. For clarity, options use this fixed size 
integer. In some cases the value is expressed using an enumeration type (see below).

* `int64_t` - Some options need the parameter specified as 64-bit integer

* `bool` - Requires the use of a boolean type (`<stdbool.h>` for C, or built-in
for C++). When *setting* an option, passing the value through an `int` type is
also properly recognized. When *getting* an option, however, you should use the
`bool` type, although you can risk passing a variable of `int` type initialized
with 0 and then checking if the resulting value is equal to 0 (just don't compare
the result with 1).

* `string` - When *setting* an option, pass the character array pointer as value
and the string length as length. When *getting*, pass an array of sufficient size
(as specified in the size variable). Every option with this type that can be
read should specify the maximum length of that array.

* `linger` - Linger structure. Used exclusively with `SRTO_LINGER`.


Enumeration types used in options
---------------------------------

### 1. `SRT_TRANSTYPE`

Used by `SRTO_TRANSTYPE` option:

* `SRTT_LIVE`: Live mode.
* `SRTT_FILE`: File mode.

See [Transmission types](./API.md#transmission-types) for details.


### 2. `SRT_KM_STATE`

The defined encryption state as performed by the Key Material Exchange, used
by `SRTO_RCVKMSTATE`, `SRTO_SNDKMSTATE` and `SRTO_KMSTATE` options:

- `SRT_KM_S_UNSECURED`: no encryption/decryption. If this state is only on
the receiver, received encrypted packets will be dropped.

- `SRT_KM_S_SECURING`: pending security (HSv4 only). This is a temporary state
used only if the connection uses HSv4 and the Key Material Exchange is
not finished yet. On HSv5 this is not possible because the Key Material
Exchange for the initial key is done in the handshake.

- `SRT_KM_S_SECURED`: KM exchange was successful and the data will be sent
encrypted and will be decrypted by the receiver. This state is only possible on
both sides in both directions simultaneously.

- `SRT_KM_S_NOSECRET`: If this state is in the sending direction (`SRTO_SNDKMSTATE`), 
then it means that the sending party has set a passphrase, but the peer did not. 
In this case the sending party can receive unencrypted packets from the peer, but 
packets it sends to the peer will be encrypted and the peer will not be able to 
decrypt them. This state is only possible in HSv5.

- `SRT_KM_S_BADSECRET`: The password is wrong (set differently on each party);
encrypted payloads won't be decrypted in either direction.

Note that with the default value of `SRTO_ENFORCEDENCRYPTION` option (true),
the state is equal on both sides in both directions, and it can be only
`SRT_KM_S_UNSECURED` or `SRT_KM_S_SECURED` (in other cases the connection
is rejected). Otherwise it may happen that either both sides have different
passwords and the state is `SRT_KM_S_BADSECRET` in both directions, or only
one party has set a password, in which case the KM state is as follows:

|                          | `SRTO_RCVKMSTATE`    | `SRTO_SNDKMSTATE`    |
|--------------------------|----------------------|----------------------|
| Party with no password:  | `SRT_KM_S_NOSECRET`  | `SRT_KM_S_UNSECURED` |
| Party with password:     | `SRT_KM_S_UNSECURED` | `SRT_KM_S_NOSECRET`  |


Getting and setting options
---------------------------

Legacy version:

    int srt_getsockopt(SRTSOCKET socket, int level, SRT_SOCKOPT optName, void* optval, int& optlen);
    int srt_setsockopt(SRTSOCKET socket, int level, SRT_SOCKOPT optName, const void* optval, int optlen);

New version:

    int srt_getsockflag(SRTSOCKET socket, SRT_SOCKOPT optName, void* optval, int& optlen);
    int srt_setsockflag(SRTSOCKET socket, SRT_SOCKOPT optName, const void* optval, int optlen);

In the legacy version, there's an additional unused `level` parameter. It was 
there in the original UDT API just to mimic the system `setsockopt` function, 
but it's ignored.

Some options require a value of type `bool` while others require type `integer`,
which is not the same -- they differ in size, and mistaking them may end up
causing a crash. This must be kept in mind especially in any C wrapper. For
convenience, the *setting* option function may accept both `int32_t` and `bool`
types, but this is not so in the case of *getting* an option value.

**UDT project legacy note**: Almost all options from the UDT library are
derived (there are a few deleted, including some deprecated already in UDT).
Many new SRT options have been added. All options are available exclusively
with the `SRTO_` prefix. Old names are provided as alias names in the `udt.h`
legacy/C++ API file. Note the translation rules:
* `UDT_` prefix from UDT options was changed to the prefix `SRTO_`
* `UDP_` prefix from UDT options was changed to the prefix `SRTO_UDP_`
* `SRT_` prefix in older SRT versions was changed to `SRTO_`

The [table below](#list-of-options) provides a complete list of SRT options and 
their characteristics according to the following legend:

1. **Since**: Defines the SRT version when this option was first introduced. If this field
is empty, it's an option derived from UDT. "Version 0.0.0" is the oldest version
of SRT ever created and put into use.

2. **Binding**: Defines limitation on setting the option. The field is empty if the option
is not settable (see **Dir** column):

    - `pre`: A connecting socket (both as caller and rendezvous) must be set
prior to calling `srt_connect()` or `srt_bind()` and never changed thereafter.
A listener socket should be set to "listening" and it will be
derived by every socket returned by `srt_accept()`.

    - `post`: This flag can be changed any time, including after the socket is
connected (as well as on an accepted socket). Setting this flag on a listening 
socket is effective only on that socket itself. Note though that there are some
post-bound options that have important meaning when set prior to connecting.

3. **Type**: The data type of the option (see above).

4. **Units**: Roughly specified unit, if the value defines things like length or time.
It can also define more precisely what kind of specialization can be used
when the type is integer:

    - `enum`: the possible values are defined in an enumeration type
    - `flags`: the integer value is a collection of bit flags

5. **Default**: The exact default value, if it can be easily specified. A more complicated
default state of a particular option will be explained in the [description]#option-descriptions 
(when marked by asterisk). For non-settable options this field is empty.

6. **Range**: If a value of an integer type has a limited range, or only a certain value
allowed, it will be specified here (otherwise empty). A range value can be
specified as:

        - `X-... `: specifies only a minimum value
        - `X-Y,Z `: values between X and Y are allowed, and additionally Z

    - If the value is of `string` type, this field will contain its maximum size
in square brackets.

    - If the range contains additionally an asterisk, it means that more elaborate
restrictions on the value apply, as explained in the [description]#option-descriptions.

7. **Dir**: Option direction: W if can be set, R if can be retrieved, RW if both.

6. **Entity**: This describes whether the option can be set on the socket or the group.
The G and S options may appear together, in which case both possibilities apply.
The D and I options, mutually exclusive, appear always with G. 
The + marker can only coexist with GS. Possible specifications are:

    - S: This option can be set on a single socket (exclusively, if not GS)

    - G: This option can be set on a group (exclusively, if not GS)

    - D: If set on a group, it will be derived by the member socket

    - I: If set on a group, it will be taken and managed exclusively by the group

    - +: This option is also allowed to be set individually on a group member
      socket through a configuration object in `SRT_SOCKGROUPCONFIG` prepared by
      `srt_create_config`. Note that this setting may override the setting derived
      from the group.

## List of options

The following table lists SRT socket options in alphabetical order. Option details are given further below.

| Option Name                                            | Since | Binding | Type      | Units   | Default    | Range    | Dir |Entity |
| :----------------------------------------------------- | :---: | :-----: | :-------: | :-----: | :--------: | :------: |:---:|:-----:|
| [`SRTO_BINDTODEVICE`]#SRTO_BINDTODEVICE              | 1.4.2 | pre     | `string`  |         |            |          | RW  | GSD+  |
| [`SRTO_CONGESTION`]#SRTO_CONGESTION                  | 1.3.0 | pre     | `string`  |         | "live"     | *        | W   | S     |
| [`SRTO_CONNTIMEO`]#SRTO_CONNTIMEO                    | 1.1.2 | pre     | `int32_t` | msec    | 3000       | 0..      | W   | GSD+  |
| [`SRTO_DRIFTTRACER`]#SRTO_DRIFTTRACER                | 1.4.2 | post    | `bool`    |         | true       |          | RW  | GSD   |
| [`SRTO_ENFORCEDENCRYPTION`]#SRTO_ENFORCEDENCRYPTION  | 1.3.2 | pre     | `bool`    |         | true       |          | W   | GSD   |
| [`SRTO_EVENT`]#SRTO_EVENT                            |       |         | `int32_t` | flags   |            |          | R   | S     |
| [`SRTO_FC`]#SRTO_FC                                  |       | pre     | `int32_t` | pkts    | 25600      | 32..     | RW  | GSD   |
| [`SRTO_GROUPCONNECT`]#SRTO_GROUPCONNECT              | 1.5.0 | pre     | `int32_t` |         | 0          | 0...1    | W   | S     |
| [`SRTO_GROUPSTABTIMEO`]#SRTO_GROUPSTABTIMEO          | 1.5.0 | pre     | `int32_t` | ms      | 80         | 10-...   | W   | GSD+  |
| [`SRTO_GROUPTYPE`]#SRTO_GROUPTYPE                    | 1.5.0 | pre     | `int32_t` | enum    |            |          | R   | S     |
| [`SRTO_INPUTBW`]#SRTO_INPUTBW                        | 1.0.5 | post    | `int64_t` | B/s     | 0          | 0..      | RW  | GSD   |
| [`SRTO_IPTOS`]#SRTO_IPTOS                            | 1.0.5 | pre     | `int32_t` |         | (system)   | 0..255   | RW  | GSD   |
| [`SRTO_IPTTL`]#SRTO_IPTTL                            | 1.0.5 | pre     | `int32_t` | hops    | (system)   | 1..255   | RW  | GSD   |
| [`SRTO_IPV6ONLY`]#SRTO_IPV6ONLY                      | 1.4.0 | pre     | `int32_t` |         | (system)   | -1..1    | RW  | GSD   |
| [`SRTO_ISN`]#SRTO_ISN                                | 1.3.0 |         | `int32_t` |         |            |          | R   | S     |
| [`SRTO_KMPREANNOUNCE`]#SRTO_KMPREANNOUNCE            | 1.3.2 | pre     | `int32_t` | pkts    | 0x1000     | 0.. *    | RW  | GSD   |
| [`SRTO_KMREFRESHRATE`]#SRTO_KMREFRESHRATE            | 1.3.2 | pre     | `int32_t` | pkts    | 0x1000000  | 0..      | RW  | GSD   |
| [`SRTO_KMSTATE`]#SRTO_KMSTATE                        | 1.0.2 |         | `int32_t` | enum    |            |          | R   | S     |
| [`SRTO_LATENCY`]#SRTO_LATENCY                        | 1.0.2 | pre     | `int32_t` | ms      | 120 *      | 0..      | RW  | GSD   |
| [`SRTO_LINGER`]#SRTO_LINGER                          |       | pre     | `linger`  | s       | on, 180    | 0..      | RW  | GSD   |
| [`SRTO_LOSSMAXTTL`]#SRTO_LOSSMAXTTL                  | 1.2.0 | pre     | `int32_t` | packets | 0          | 0..      | RW  | GSD+  |
| [`SRTO_MAXBW`]#SRTO_MAXBW                            | 1.0.5 | pre     | `int64_t` | B/s     | -1         | -1..     | RW  | GSD   |
| [`SRTO_MESSAGEAPI`]#SRTO_MESSAGEAPI                  | 1.3.0 | pre     | `bool`    |         | true       |          | W   | GSD   |
| [`SRTO_MINVERSION`]#SRTO_MINVERSION                  | 1.3.0 | pre     | `int32_t` | version | 0          | *        | W   | GSD   |
| [`SRTO_MSS`]#SRTO_MSS                                |       | pre     | `int32_t` | bytes   | 1500       | 76..     | RW  | GSD   |
| [`SRTO_NAKREPORT`]#SRTO_NAKREPORT                    | 1.1.0 | pre     | `bool`    |         |  *         |          | RW  | GSD+  |
| [`SRTO_OHEADBW`]#SRTO_OHEADBW                        | 1.0.5 | post    | `int32_t` | %       | 25         | 5..100   | RW  | GSD   |
| [`SRTO_PACKETFILTER`]#SRTO_PACKETFILTER              | 1.4.0 | pre     | `string`  |         | ""         | [512]    | W   | GSD   |
| [`SRTO_PASSPHRASE`]#SRTO_PASSPHRASE                  | 0.0.0 | pre     | `string`  |         | ""         | [10..79] | W   | GSD   |
| [`SRTO_PAYLOADSIZE`]#SRTO_PAYLOADSIZE                | 1.3.0 | pre     | `int32_t` | bytes   | *          | *        | W   | GSD   |
| [`SRTO_PBKEYLEN`]#SRTO_PBKEYLEN                      | 0.0.0 | pre     | `int32_t` | bytes   | 0          | *        | RW  | GSD   |
| [`SRTO_PEERIDLETIMEO`]#SRTO_PEERIDLETIMEO            | 1.3.3 | pre     | `int32_t` | ms      | 5000       | 0..      | RW  | GSD+  |
| [`SRTO_PEERLATENCY`]#SRTO_PEERLATENCY                | 1.3.0 | pre     | `int32_t` | ms      | 0          | 0..      | RW  | GSD   |
| [`SRTO_PEERVERSION`]#SRTO_PEERVERSION                | 1.1.0 |         | `int32_t` | *       |            |          | R   | GS    |
| [`SRTO_RCVBUF`]#SRTO_RCVBUF                          |       | pre     | `int32_t` | bytes   | 8192 bufs  | *        | RW  | GSD+  |
| [`SRTO_RCVDATA`]#SRTO_RCVDATA                        |       |         | `int32_t` | pkts    |            |          | R   | S     |
| [`SRTO_RCVKMSTATE`]#SRTO_RCVKMSTATE                  | 1.2.0 |         | `int32_t` | enum    |            |          | R   | S     |
| [`SRTO_RCVLATENCY`]#SRTO_RCVLATENCY                  | 1.3.0 | pre     | `int32_t` | msec    | *          | 0..      | RW  | GSD   |
| [`SRTO_RCVSYN`]#SRTO_RCVSYN                          |       | post    | `bool`    |         | true       |          | RW  | GSI   |
| [`SRTO_RCVTIMEO`]#SRTO_RCVTIMEO                      |       | post    | `int32_t` | ms      | -1         | -1, 0..  | RW  | GSI   |
| [`SRTO_RENDEZVOUS`]#SRTO_RENDEZVOUS                  |       | pre     | `bool`    |         | false      |          | RW  | S     |
| [`SRTO_RETRANSMITALGO`]#SRTO_RETRANSMITALGO          | 1.4.2 | pre     | `int32_t` |         | 0          | [0, 1]   | W   | GSD   |
| [`SRTO_REUSEADDR`]#SRTO_REUSEADDR                    |       | pre     | `bool`    |         | true       |          | RW  | GSD   |
| [`SRTO_SENDER`]#SRTO_SENDER                          | 1.0.4 | pre     | `bool`    |         | false      |          | W   | S     |
| [`SRTO_SNDBUF`]#SRTO_SNDBUF                          |       | pre     | `int32_t` | bytes   | 8192 bufs  | *        | RW  | GSD+  |
| [`SRTO_SNDDATA`]#SRTO_SNDDATA                        |       |         | `int32_t` | pkts    |            |          | R   | S     |
| [`SRTO_SNDDROPDELAY`]#SRTO_SNDDROPDELAY              | 1.3.2 | pre     | `int32_t` | ms      | *          | -1..     | W   | GSD+  |
| [`SRTO_SNDKMSTATE`]#SRTO_SNDKMSTATE                  | 1.2.0 | post    | `int32_t` | enum    |            |          | R   | S     |
| [`SRTO_SNDSYN`]#SRTO_SNDSYN                          |       | post    | `bool`    |         | true       |          | RW  | GSI   |
| [`SRTO_SNDTIMEO`]#SRTO_SNDTIMEO                      |       | post    | `int32_t` | ms      | -1         | -1..     | RW  | GSI   |
| [`SRTO_STATE`]#SRTO_STATE                            |       |         | `int32_t` | enum    |            |          | R   | S     |
| [`SRTO_STREAMID`]#SRTO_STREAMID                      | 1.3.0 | pre     | `string`  |         | ""         | [512]    | RW  | GSD   |
| [`SRTO_TLPKTDROP`]#SRTO_TLPKTDROP                    | 1.0.6 | pre     | `bool`    |         | *          |          | RW  | GSD   |
| [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE                    | 1.3.0 | pre     | `int32_t` | enum    |`SRTT_LIVE` | *        | W   | S     |
| [`SRTO_TSBPDMODE`]#SRTO_TSBPDMODE                    | 0.0.0 | pre     | `bool`    |         | *          |          | W   | S     |
| [`SRTO_UDP_RCVBUF`]#SRTO_UDP_RCVBUF                  |       | pre     | `int32_t` | bytes   | 8192 bufs  | *        | RW  | GSD+  |
| [`SRTO_UDP_SNDBUF`]#SRTO_UDP_SNDBUF                  |       | pre     | `int32_t` | bytes   | 65536      | *        | RW  | GSD+  |
| [`SRTO_VERSION`]#SRTO_VERSION                        | 1.1.0 |         | `int32_t` |         |            |          | R   | S     |



### Option Descriptions

#### SRTO_BINDTODEVICE


| OptName               | Since | Binding | Type     | Units  | Default  | Range  | Dir |Entity|
| --------------------- | ----- | ------- | -------- | ------ | -------- | ------ |-----|------|
| `SRTO_BINDTODEVICE`   | 1.4.2 | pre     | `string` |        |          |        | RW  | GSD+ |

- Refers to the `SO_BINDTODEVICE` system socket option for `SOL_SOCKET` level.
This effectively limits the packets received by this socket to only those
that are targeted to that device. The device is specified by name passed as
string. The setting becomes effective after binding the socket (including
default-binding when connecting).

- NOTE: This option is only available on Linux and available there by default.
On all other platforms setting this option will always fail.

- NOTE: With the default system configuration, this option is only available
for a process that runs as root. Otherwise the function that applies the setting
(`srt_bind`, `srt_connect` etc.) will fail.


[Return to list](#list-of-options)


#### SRTO_CONGESTION

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_CONGESTION` | 1.3.0 | pre     | `string`   |         | "live"    | *      | W   | S      |

- The type of congestion controller used for the transmission for that socket.

- Its type must be exactly the same on both connecting parties, otherwise the
connection is rejected - **however** you may also change the value of this
option for the accepted socket in the listener callback (see `srt_listen_callback`)
if an appropriate instruction was given in the Stream ID.

- Currently supported congestion controllers are designated as "live" and "file"

- Note that it is not recommended to change this option manually, but you should
rather change the whole set of options using the [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE option.


#### SRTO_CONNTIMEO


| OptName            | Since | Binding |   Type    | Units  | Default  | Range  | Dir | Entity |
| ------------------ | ----- | ------- | --------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_CONNTIMEO`   | 1.1.2 | pre     | `int32_t` | msec   | 3000     | 0..    | W   | GSD+   |

- Connect timeout. This option applies to the caller and rendezvous connection
modes. For the rendezvous mode (see `SRTO_RENDEZVOUS`) the effective connection timeout
will be 10 times the value set with `SRTO_CONNTIMEO`.


[Return to list](#list-of-options)


#### SRTO_DRIFTTRACER

| OptName           | Since | Binding | Type      | Units  | Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | --------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_DRIFTTRACER`| 1.4.2 | post    | `bool`    |        | true     |        | RW  | GSD    |

- Enables or disables time drift tracer (receiver).


[Return to list](#list-of-options)



#### SRTO_ENFORCEDENCRYPTION

| OptName                    | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_ENFORCEDENCRYPTION`  | 1.3.2 | pre     | `bool`     |         | true      |        | W   | GSD    |

- This option enforces that both connection parties have the same passphrase
set, or both do not set the passphrase, otherwise the connection is rejected.

- When this option is set to FALSE **on both connection parties**, the
connection is allowed even if the passphrase differs on both parties,
or it was set only on one party. Note that the party that has set a passphrase
is still allowed to send data over the network. However, the receiver will not
be able to decrypt that data and will not deliver it to the application. The
party that has set no passphrase can send (unencrypted) data that will be
successfully received by its peer.

- This option can be used in some specific situations when the user knows
both parties of the connection, so there's no possible situation of a rogue
sender and can be useful in situations where it is important to know whether a
connection is possible. The inability to decrypt an incoming transmission can
be then reported as a different kind of problem.

**IMPORTANT**: There is unusual and unobvious behavior when this flag is TRUE
on the caller and FALSE on the listener, and the passphrase was mismatched. On
the listener side the connection will be established and broken right after,
resulting in a short-lived "spurious" connection report on the listener socket.
This way, a socket will be available for retrieval from an `srt_accept` call
for a very short time, after which it will be removed from the listener backlog
just as if no connection attempt was made at all. If the application is fast
enough to react on an incoming connection, it will retrieve it, only to learn
that it is already broken. This also makes possible a scenario where
`SRT_EPOLL_IN` is reported on a listener socket, but then an `srt_accept` call
reports an `SRT_EASYNCRCV` error. How fast the connection gets broken depends
on the network parameters -- in particular, whether the `UMSG_SHUTDOWN` message
sent by the caller is delivered (which takes one RTT in this case) or missed
during the interval from its creation up to the connection timeout (default = 5
seconds). It is therefore strongly recommended that you only set this flag to
FALSE on the listener when you are able to ensure that it is also set to FALSE
on the caller side.


[Return to list](#list-of-options)



#### SRTO_EVENT

| OptName           | Since | Binding | Type      | Units  | Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | --------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_EVENT`      |       |         | `int32_t` | flags  |          |        | R   | S      |

- Returns bit flags set according to the current active events on the socket. 
- Possible values are those defined in `SRT_EPOLL_OPT` enum (a combination of 
`SRT_EPOLL_IN`, `SRT_EPOLL_OUT` and `SRT_EPOLL_ERR`).


[Return to list](#list-of-options)



#### SRTO_FC

| OptName           | Since | Binding | Type      | Units  | Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | --------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_FC`         |       | pre     | `int32_t` | pkts   | 25600    | 32..   | RW  | GSD    |

- Flight Flag Size (maximum number of bytes that can be sent without 
being acknowledged)


[Return to list](#list-of-options)



#### SRTO_GROUPCONNECT

| OptName              | Since | Binding | Type      | Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | --------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_GROUPCONNECT`  | 1.5.0 | pre     | `int32_t` |        | 0        | 0...1  | W   | S      |

- When this flag is set to 1 on a listener socket, it allows this socket to
accept group connections. When set to the default 0, group connections will be
rejected. Keep in mind that if the `SRTO_GROUPCONNECT` flag is set to 1 (i.e.
group connections are allowed) `srt_accept` may return a socket **or** a group
ID. A call to `srt_accept` on a listener socket that has group connections
allowed must take this into consideration. It's up to the caller of this
function to make this distinction and to take appropriate action depending on
the type of entity returned.

- When this flag is set to 1 on an accepted socket that is passed to the
listener callback handler, it means that this socket is created for a group
connection and it will become a member of a group. Note that in this case
only the first connection within the group will result in reporting from
`srt_accept` (further connections are handled in the background), and this
function will return the group, not this socket ID.


[Return to list](#list-of-options)



#### SRTO_GROUPSTABTIMEO

| OptName               | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| --------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_GROUPSTABTIMEO` | 1.5.0 | pre     | `int32_t`  | ms     | 80       | 10-... | W   | GSD+   |

- This setting is used for groups of type `SRT_GTYPE_BACKUP`. It defines the stability 
timeout, which is the maximum interval between two consecutive packets retrieved from 
the peer on the currently active link. These two packets can be of any type,
but this setting usually refers to control packets while the agent is a sender.
Idle links exchange only keepalive messages once per second, so they do not
count. Note that this option is meaningless on sockets that are not members of
the Backup-type group.

- This value should be set with a thoroughly selected balance and correspond to
the maximum stretched response time between two consecutive ACK messages. By default
ACK messages are sent every 10ms (so this interval is not dependent on the network
latency), and so should be the interval between two consecutive received ACK
messages. Note, however, that the network jitter on the public internet causes
these intervals to be stretched, even to multiples of that interval. Both large
and small values of this option have consequences:

- Large values of this option prevent overreaction on highly stretched response
times, but introduce a latency penalty - the latency must be greater
than this value (otherwise switching to another link won't preserve
smooth signal sending). Large values will also contribute to higher packet
bursts sent at the moment when an idle link is activated.

- Smaller values of this option respect low latency requirements very
well, but may cause overreaction on even slightly stretched response times. This is
unwanted, as a link switch should ideally happen only when the currently active
link is really broken, as every link switch costs extra overhead (it counts
for 100% for a time of one ACK interval).

- Note that the value of this option is not allowed to exceed the value of
`SRTO_PEERIDLETIMEO`. Usually it is only meaningful if you change the latter
option, as the default value of it is way above any sensible value of
`SRTO_GROUPSTABTIMEO`.



[Return to list](#list-of-options)


#### SRTO_GROUPTYPE

| OptName              | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_GROUPTYPE`     | 1.5.0 | pre     | `int32_t`  | enum   |          |        | R   | S      |

- This option is read-only and it is intended to be called inside the listener
callback handler (see `srt_listen_callback`). Possible values are defined in
the `SRT_GROUP_TYPE` enumeration type.

- This option returns the group type that is declared in the incoming connection.
If the incoming connection is not going to make a group-member connection, then
the value returned is `SRT_GTYPE_UNDEFINED`. If this option is read in any other
context than inside the listener callback handler, the value is undefined.


[Return to list](#list-of-options)



#### SRTO_INPUTBW

| OptName          | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| ---------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_INPUTBW`   | 1.0.5 | post    | `int64_t`  | B/s    | 0        | 0..    | RW  | GSD    |

- This option is effective only if `SRTO_MAXBW` is set to 0 (relative). It
controls the maximum bandwidth together with `SRTO_OHEADBW` option according
to the formula: `MAXBW = INPUTBW * (100 + OHEADBW) / 100`. When this option
is set to 0 (automatic) then the real INPUTBW value will be estimated from
the rate of the input (cases when the application calls the `srt_send*`
function) during transmission. 

- *Recommended: set this option to the anticipated bitrate of your live stream
and keep the default 25% value for `SRTO_OHEADBW`*.


[Return to list](#list-of-options)



#### SRTO_IPTOS

| OptName          | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| ---------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_IPTOS`     | 1.0.5 | pre     | `int32_t`  |        | (system) | 0..255 | RW  | GSD    |

- IPv4 Type of Service (see `IP_TOS` option for IP) or IPv6 Traffic Class (see `IPV6_TCLASS`
of IPv6) depending on socket address family. Applies to sender only.

- When *getting*, the returned value is the user preset for non-connected sockets 
and the actual value for connected sockets.

- *Sender: user configurable, default: 0xB8*


[Return to list](#list-of-options)



#### SRTO_IPTTL

| OptName          | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| ---------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_IPTTL`     | 1.0.5 | pre     | `int32_t`  | hops   | (system) | 1..255 | RW  | GSD    |

- IPv4 Time To Live (see `IP_TTL` option for IP) or IPv6 unicast hops (see
`IPV6_UNICAST_HOPS` for IPv6) depending on socket address family. Applies to sender only. 

- When *getting*, the returned value is the user preset for non-connected sockets 
and the actual value for connected sockets.

- *Sender: user configurable, default: 64*


[Return to list](#list-of-options)



#### SRTO_IPV6ONLY

| OptName          | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| ---------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_IPV6ONLY`  | 1.4.0 | pre     | `int32_t`  |        | (system) | -1..1  | RW  | GSD    |

- Set system socket flag `IPV6_V6ONLY`. When set to 0 a listening socket binding an
IPv6 address accepts also IPv4 clients (their addresses will be formatted as
IPv4-mapped IPv6 addresses). By default (-1) this option is not set and the
platform default value is used.


[Return to list](#list-of-options)


#### SRTO_ISN

| OptName          | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| ---------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_ISN`       | 1.3.0 |         | `int32_t`  |        |          |        | R   | S      |

- The value of the ISN (Initial Sequence Number), which is the first sequence
  number put on the first UDP packets sent that are carrying an SRT data payload. 

- *This value is useful for developers of some more complicated methods of flow 
control, possibly with multiple SRT sockets at a time. It is not intended to be
used in any regular development.*


[Return to list](#list-of-options)



#### SRTO_KMPREANNOUNCE

| OptName               | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| --------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_KMPREANNOUNCE`  | 1.3.2 | pre     | `int32_t`  | pkts   | 0x1000   | 0.. *  | RW  | GSD    |

- The interval (defined in packets) between when a new Stream Encrypting Key
(SEK) is sent and when switchover occurs. This value also applies to the
subsequent interval between when switchover occurs and when the old SEK is
decommissioned.

At `SRTO_KMPREANNOUNCE` packets before switchover the new key is sent
(repeatedly, if necessary, until it is confirmed by the receiver).

At the switchover point (see `SRTO_KMREFRESHRATE`), the sender starts
encrypting and sending packets using the new key. The old key persists in case
it is needed to decrypt packets that were in the flight window, or
retransmitted packets.

The old key is decommissioned at `SRTO_KMPREANNOUNCE` packets after switchover.

The allowed range for this value is between 1 and half of the current value of
`SRTO_KMREFRESHRATE`. The minimum value should never be less than the flight
window (i.e. the number of packets that have already left the sender but have
not yet arrived at the receiver).


[Return to list](#list-of-options)



#### SRTO_KMREFRESHRATE

| OptName               | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| --------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_KMREFRESHRATE`  | 1.3.2 | pre     | `int32_t`  | pkts   | 0x1000000| 0..    | RW  | GSD    |

- The number of packets to be transmitted after which the Stream Encryption Key
(SEK), used to encrypt packets, will be switched to the new one. Note that
the old and new keys live in parallel for a certain period of time (see
`SRTO_KMPREANNOUNCE`) before and after the switchover.

- Having a preannounce period before switchover ensures the new SEK is installed
at the receiver before the first packet encrypted with the new SEK is received.
The old key remains active after switchover in order to decrypt packets that
might still be in flight, or packets that have to be retransmitted.


[Return to list](#list-of-options)



#### SRTO_KMSTATE

| OptName               | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| --------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_KMSTATE`        | 1.0.2 |         | `int32_t`  | enum   |          |        | R   | S      |

- Keying Material state. This is a legacy option that is equivalent to
`SRTO_SNDKMSTATE`, if the socket has set `SRTO_SENDER` to true, and 
`SRTO_RCVKMSTATE` otherwise. This option is then equal to `SRTO_RCVKMSTATE`
always if your application disregards possible cooperation with a peer older
than 1.3.0, but then with the default value of `SRTO_ENFORCEDENCRYPTION` the
value returned by both options is always the same. See [`SRT_KM_STATE`]#2-srt_km_state
for more details.


[Return to list](#list-of-options)



#### SRTO_LATENCY

| OptName               | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| --------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_LATENCY`        | 1.0.2 | pre     | `int32_t`  | ms     | 120 *    | 0..    | RW  | GSD    |

- This flag sets both `SRTO_RCVLATENCY` and `SRTO_PEERLATENCY` to the same value. 
Note that prior to version 1.3.0 this is the only flag to set the latency. However 
this is effectively equivalent to setting `SRTO_PEERLATENCY`, when the side is 
sender (see `SRTO_SENDER`), and `SRTO_RCVLATENCY` when the side is receiver. 
Bidirectional stream sending in version 1.2.0 was not supported.


[Return to list](#list-of-options)



#### SRTO_LINGER

| OptName              | Since | Binding | Type       | Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------ | -------- | ------ | --- | ------ |
| `SRTO_LINGER`        |       | pre     | `linger`   | s      | on, 180  | 0..    | RW  | GSD    |

- Linger time on close (see [SO\_LINGER]http://man7.org/linux/man-pages/man7/socket.7.html).

- *SRT recommended value: off (0)*.


[Return to list](#list-of-options)



#### SRTO_LOSSMAXTTL

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_LOSSMAXTTL`    | 1.2.0 | pre     | `int32_t`  | packets | 0        | 0..    | RW  | GSD+   |

- The value up to which the *Reorder Tolerance* may grow. The *Reorder Tolerance*
is the number of packets that must follow the experienced "gap" in sequence numbers
of incoming packets so that the loss report is sent (in the hope that the gap is due
to packet reordering rather than because of loss). The value of *Reorder Tolerance*
starts from 0 and is set to a greater value when packet reordering is detected 
This happens when a "belated" packet, with sequence number older than the latest 
received, has been received, but without retransmission flag. When this is detected 
the *Reorder Tolerance* is set to the value of the interval between latest sequence
and this packet's sequence, but not more than the value set by `SRTO_LOSSMAXTTL`.
By default this value is set to 0, which means that this mechanism is off.



[Return to list](#list-of-options)



#### SRTO_MAXBW

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_MAXBW`         | 1.0.5 | pre     | `int64_t`  | B/s     | -1       | -1..   | RW  | GSD    |

- Maximum send bandwidth.
- `-1`: infinite (the limit in Live Mode is 1 Gbps)
- ` 0`: relative to input rate (see [`SRTO_INPUTBW`]#SRTO_INPUTBW) 
- `>0`: absolute limit in B/s

- *NOTE: This option has a default value of -1, regardless of the mode. 
For live streams it is typically recommended to set the value 0 here and rely
on `SRTO_INPUTBW` and `SRTO_OHEADBW` options. However, if you want to do so,
you should make sure that your stream has a fairly constant bitrate, or that
changes are not abrupt, as high bitrate changes may work against the
measurement. SRT cannot ensure that this is always the case for a live stream,
therefore the default -1 remains even in live mode.*


[Return to list](#list-of-options)



#### SRTO_MESSAGEAPI

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_MESSAGEAPI`    | 1.3.0 | pre     | `bool`     |         | true     |        | W   | GSD    |

- When set, this socket uses the Message API[\*], otherwise it uses the
Stream API. Note that in live mode (see [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE option) only the
Message API is available. In File mode you can chose to use one of two modes
(note that the default for this option is changed with `SRTO_TRANSTYPE`
option):

  - **Stream API** (default for file mode): In this mode you may send 
  as many data as you wish with one sending instruction, or even use dedicated 
  functions that operate directly on a file. The internal facility will take care 
  of any speed and congestion control. When receiving, you can also receive as 
  many data as desired. The data not extracted will be waiting for the next call. 
  There is no boundary between data portions in Stream mode.
  
  - **Message API**: In this mode your single sending instruction passes exactly 
  one piece of data that has boundaries (a message). Contrary to Live mode, 
  this message may span multiple UDP packets, and the only size limitation 
  is that it shall fit as a whole in the sending buffer. The receiver shall use 
  as large a buffer as necessary to receive the message, otherwise reassembling 
  and delivering the message might not be possible. When the message is not 
  complete (not all packets received or there was a packet loss) it will not be 
  copied to the application's buffer. Messages that are sent later, but were 
  earlier reassembled by the receiver, will be delivered once ready, if the 
  `inorder` flag was set to false.
  See [`srt_sendmsg`]https://github.com/Haivision/srt/blob/master/docs/API.md#sending-and-receiving).
  
- As a comparison to the standard system protocols, the Stream API does 
transmission similar to TCP, whereas the Message API functions like the 
SCTP protocol.


[Return to list](#list-of-options)



#### SRTO_MINVERSION

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_MINVERSION`    | 1.3.0 | pre     | `int32_t`  | version | 0        | *      | W   | GSD    |

- The minimum SRT version that is required from the peer. A connection to a
peer that does not satisfy the minimum version requirement will be rejected.
See [`SRTO_VERSION`]#SRTO_VERSION for the version format.


[Return to list](#list-of-options)



#### SRTO_MSS

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_MSS`           |       | pre     | `int32_t`  | bytes   | 1500     | 76..   | RW  | GSD    |

- Maximum Segment Size. Used for buffer allocation and rate calculation using 
packet counter assuming fully filled packets. Each party can set its own MSS 
value independently. During a handshake the parties exchange MSS values, and 
the lowest is used.

*Generally on the internet MSS is 1500 by default. This is the maximum 
size of a UDP packet and can be only decreased, unless you have some unusual 
dedicated network settings. MSS is not to be confused with the size of the UDP 
payload or SRT payload - this size is the size of the IP packet, including the 
UDP and SRT headers* 


[Return to list](#list-of-options)



#### SRTO_NAKREPORT

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_NAKREPORT`     | 1.1.0 | pre     | `bool`     |         |  *       |        | RW  | GSD+   |

- When set to true, every report for a detected loss will be repeated when the
timeout for the expected retransmission of this loss has expired and the
missing packet still wasn't recovered, or wasn't conditionally dropped (see
[`SRTO_TLPKTDROP`]#SRTO_TLPKTDROP).

- The default is true for Live mode, and false for File mode (see [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE).


[Return to list](#list-of-options)



#### SRTO_OHEADBW

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_OHEADBW`       | 1.0.5 | post    | `int32_t`  | %       | 25       | 5..100 | RW  | GSD    |

- Recovery bandwidth overhead above input rate (see `[`SRTO_INPUTBW`](#SRTO_INPUTBW)`), 
in percentage of the input rate. It is effective only if `SRTO_MAXBW` is set to 0.

- *Sender: user configurable, default: 25%.* 

- Recommendations:

	- *Overhead is intended to give you extra bandwidth for the case when a packet 
	has taken part of the bandwidth, but then was lost and has to be retransmitted. 
	Therefore the effective maximum bandwidth should be appropriately higher than 
	your stream's bitrate so that there's some room for retransmission, but still 
	limited so that the retransmitted packets don't cause the bandwidth usage to 
	skyrocket when larger groups of packets are lost*

	- *Don't configure it too low and avoid 0 in the case when you have the 
	`SRTO_INPUTBW` option set to 0 (automatic). Otherwise your stream will choke 
	and break quickly at any rise in packet loss.*

- ***To do: set-only; get should be supported.***


[Return to list](#list-of-options)



#### SRTO_PACKETFILTER

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PACKETFILTER`  | 1.4.0 | pre     | `string`   |         |  ""      | [512]  | W   | GSD    |

- Set up the packet filter. The string must match appropriate syntax for packet
filter setup.

As there can only be one configuration for both parties, it is recommended that 
one party defines the full configuration while the other only defines the matching 
packet filter type (for example, one sets `fec,cols:10,rows:-5,layout:staircase` 
and the other just `fec`). Both parties can also set this option to the same value. 
The packet filter function will attempt to merge configuration definitions, but if 
the options specified are in conflict, the connection will be rejected.

For details, see [Packet Filtering & FEC](packet-filtering-and-fec.md).


[Return to list](#list-of-options)



#### SRTO_PASSPHRASE

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PASSPHRASE`    | 0.0.0 | pre     | `string`   |         | ""       |[10..79]| W   | GSD    |

- Sets the passphrase for encryption. This enables encryption on this party (or
disables it, if an empty passphrase is passed).

- The passphrase is the shared secret between the sender and the receiver. It is 
used to generate the Key Encrypting Key using [PBKDF2]http://en.wikipedia.org/wiki/PBKDF2 
(Password-Based Key Derivation Function 2). It is used on the receiver only if 
the received data is encrypted.

- Note that since the introduction of bidirectional support, there's only one 
initial SEK to encrypt the stream (new keys after refreshing will be updated 
independently), and there's no distinction between "service party that defines 
the password" and "client party that is required to set matching password" - both 
parties are equivalent, and in order to have a working encrypted connection, they 
have to simply set the same passphrase. Otherwise the connection is rejected by 
default (see also [`SRTO_ENFORCEDENCRYPTION`]#SRTO_ENFORCEDENCRYPTION).


[Return to list](#list-of-options)



#### SRTO_PAYLOADSIZE

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PAYLOADSIZE`   | 1.3.0 | pre     | `int32_t`  | bytes   | *        | *      | W   | GSD    |

- Sets the maximum declared size of a single call to sending function in Live
mode. When set to 0, there's no limit for a single sending call.

- For Live mode: Default value is 1316, but can be increased up to 1456. Note that
with the `SRTO_PACKETFILTER` option additional header space is usually required,
which decreases the maximum possible value for `SRTO_PAYLOADSIZE`.

- For File mode: Default value is 0 and it's recommended not to be changed.



[Return to list](#list-of-options)



#### SRTO_PBKEYLEN

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PBKEYLEN`      | 0.0.0 | pre     | `int32_t`  | bytes   | 0        | *      | RW  | GSD    |

- Sender encryption key length.

- Possible values:
  -  0 =`PBKEYLEN` (default value)
  - 16 = AES-128 (effective value) 
  - 24 = AES-192
  - 32 = AES-256

- The use is slightly different in 1.2.0 (HSv4), and since 1.3.0 (HSv5):

  - **HSv4**: This is set on the sender and enables encryption, if not 0. The receiver 
  shall not set it and will agree on the length as defined by the sender.
  
  - **HSv5**: The "default value" for `PBKEYLEN` is 0, which means that the 
  `PBKEYLEN` won't be advertised. The "effective value" for `PBKEYLEN` is 16, but 
  this applies only when neither party has set the value explicitly (i.e. when 
  both are initially at the default value of 0). If any party *has* set an 
  explicit value (16, 24, 32) it will be advertised in the handshake. If the other 
  party remains at the default 0, it will accept the peer's value. The situation 
  where both parties set a value should be treated carefully. Actually there are 
  three intended methods of defining it, and all other uses are considered 
  undefined behavior:
  
    - **Unidirectional**: the sender shall set `PBKEYLEN` and the receiver shall 
    not alter the default value 0. The effective `PBKEYLEN` will be the one set 
    on the sender. The receiver need not know the sender's `PBKEYLEN`, just the 
    passphrase, `PBKEYLEN` will be correctly passed.
    
    - **Bidirectional in Caller-Listener arrangement**: it is recommended to use 
    a rule whereby you will be setting the `PBKEYLEN` exclusively either on the 
    Listener or on the Caller. The value set on the Listener will win, if set on 
    both parties.
    
    - **Bidirectional in Rendezvous arrangement**: you have to know the passphrases 
    for both parties, as well as `PBKEYLEN`. Set `PBKEYLEN` to the same value on 
    both parties (or leave the default value on both parties, which will 
    result in 16)
    
    - **Unwanted behavior cases**: if both parties set `PBKEYLEN` and the value 
    on both sides is different, the effective `PBKEYLEN` will be the one that is 
    set on the Responder party, which may also override the `PBKEYLEN` 32 set by 
    the sender to value 16 if such value was used by the receiver. The Responder 
    party is the Listener in a Caller-Listener arrangement. In Rendezvous it's a 
    matter of luck which party becomes the Responder.



[Return to list](#list-of-options)



#### SRTO_PEERIDLETIMEO

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PEERIDLETIMEO` | 1.3.3 | pre     | `int32_t`  | ms      | 5000     | 0..    | RW  | GSD+   |

- The maximum time in `[ms]` to wait until another packet is received from a peer 
since the last such packet reception. If this time is passed, the connection is 
considered broken on timeout.


[Return to list](#list-of-options)



#### SRTO_PEERLATENCY

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PEERLATENCY`   | 1.3.0 | pre     | `int32_t`  | ms      | 0        | 0..    | RW  | GSD    |

- The latency value (as described in `SRTO_RCVLATENCY`) that is set by the sender 
side as a minimum value for the receiver.

- Note that when reading, the value will report the preset value on a non-connected
socket, and the effective value on a connected socket.


[Return to list](#list-of-options)



#### SRTO_PEERVERSION

| OptName              | Since | Binding | Type       |  Units  | Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | -------- | ------ | --- | ------ |
| `SRTO_PEERVERSION`   | 1.1.0 |         | `int32_t`  | *       |          |        | R   | GS     |

- SRT version used by the peer. The value 0 is returned if not connected, SRT 
handshake not yet performed (HSv4 only), or if peer is not SRT. 
See [`SRTO_VERSION`]#SRTO_VERSION for the version format. 


[Return to list](#list-of-options)



#### SRTO_RCVBUF

| OptName              | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RCVBUF`        |       | pre     | `int32_t`  | bytes   | 8192 bufs  | *      | RW  | GSD+   |


- Receive Buffer Size, in bytes. Note, however, that the internal setting of this
value is in the number of buffers, each one of size equal to SRT payload size,
which is the value of `SRTO_MSS` decreased by UDP and SRT header sizes (28 and 16).
The value set here will be effectively aligned to the multiple of payload size.

- Minimum value: 32 buffers (46592 with default value of `SRTO_MSS`).
- Maximum value: `SRTO_FC` number of buffers (receiver buffer must not be greater 
  than the Flight Flag size).


[Return to list](#list-of-options)



#### SRTO_RCVDATA

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RCVDATA`    |       |         | `int32_t`  | pkts    |            |        | R   | S      |

- Size of the available data in the receive buffer.


[Return to list](#list-of-options)



#### SRTO_RCVKMSTATE

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RCVKMSTATE` | 1.2.0 |         | `int32_t`  | enum    |            |        | R   | S      |
 
- KM state on the agent side when it's a receiver.

- Values defined in enum [`SRT_KM_STATE`]#2-srt_km_state.


[Return to list](#list-of-options)



#### SRTO_RCVLATENCY

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RCVLATENCY` | 1.3.0 | pre     | `int32_t`  | msec    | *          | 0..    | RW  | GSD    |

- Latency value in the receiving direction. This value is only significant when
`SRTO_TSBPDMODE` is set to true.

- Latency refers to the time that elapses from the moment a packet is sent 
to the moment when it's delivered to a receiver application. The SRT latency 
setting should be a buffer large enough to cover the time spent for sending, 
unexpectedly extended RTT time, and the time needed to retransmit any
lost UDP packet. The effective latency value will be the maximum between the 
`SRTO_RCVLATENCY` value and the value of `SRTO_PEERLATENCY` set by 
the peer side. **This option in pre-1.3.0 version is available only as** 
`SRTO_LATENCY`. Note that the real latency value may be slightly different 
than this setting due to the impossibility of perfectly measuring exactly the 
same point in time at both parties simultaneously. What is important with 
latency is that its actual value, once set with the connection, is kept constant 
throughout the duration of a connection.

- Default value: 120 in Live mode, 0 in File mode (see [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE).

- Note that when reading, the value will report the preset value on a non-connected
socket, and the effective value on a connected socket.


[Return to list](#list-of-options)



#### SRTO_RCVSYN

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RCVSYN`     |       | post    | `bool`     |         | true       |        | RW  | GSI    |

- When true, sets blocking mode on reading function when it's not ready to
perform the operation. When false ("non-blocking mode"), the reading function
will in this case report error `SRT_EASYNCRCV` and return immediately. Details
depend on the tested entity:

- On a connected socket or group this applies to a receiving function
(`srt_recv` and others) and a situation when there are no data available for
reading. The readiness state for this operation can be tested by checking the
`SRT_EPOLL_IN` flag on the aforementioned socket or group.

- On a freshly created socket or group that is about to be connected to a peer
listener this applies to any `srt_connect` call (and derived), which in
"non-blocking mode" always returns immediately. The connected state for that
socket or group can be tested by checking the `SRT_EPOLL_OUT` flag. Note
that a socket that failed to connect doesn't change the `SRTS_CONNECTING`
state and can be found out only by testing the `SRT_EPOLL_ERR` flag.

- On a listener socket this applies to `srt_accept` call. The readiness state
for this operation can be tested by checking the `SRT_EPOLL_IN` flag on
this listener socket. This flag is also derived from the listener socket
by the accepted socket or group, although the meaning of this flag is
effectively different.

- Note that when this flag is set only on a group, it applies to a
specific receiving operation being done on that group (i.e. it is not
derived from the socket of which the group is a member).



[Return to list](#list-of-options)



#### SRTO_RCVTIMEO

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RCVTIMEO`   |       | post    | `int32_t`  | ms      | -1         | -1, 0..| RW  | GSI    |

- Limits the time up to which the receiving operation will block (see
[`SRTO_RCVSYN`]#SRTO_RCVSYN for details), such that when this time is exceeded, 
it will behave as if in "non-blocking mode". The -1 value means no time limit.


[Return to list](#list-of-options)



#### SRTO_RENDEZVOUS

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_RENDEZVOUS` |       | pre     | `bool`     |         | false      |        | RW  | S      |

- Use Rendezvous connection mode (both sides must set this and both must use the
procedure of `srt_bind` and then `srt_connect` (or `srt_rendezvous`) to one another.


[Return to list](#list-of-options)



#### SRTO_RETRANSMITALGO

| OptName               | Since | Binding | Type      | Units  | Default | Range  | Dir | Entity |
| --------------------- | ----- | ------- | --------- | ------ | ------- | ------ | --- | ------ |
| `SRTO_RETRANSMITALGO` | 1.4.2 | pre     | `int32_t` |        | 0       | [0, 1] | W   | GSD    |

- Retransmission algorithm to use (SENDER option):
   - 0 - Default (retransmit on every loss report).
   - 1 - Reduced retransmissions (not more often than once per RTT); reduced 
     bandwidth consumption.

- This option is effective only on the sending side. It influences the decision 
as to whether particular reported lost packets should be retransmitted at a 
certain time or not.


[Return to list](#list-of-options)



#### SRTO_REUSEADDR

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_REUSEADDR`  |       | pre     | `bool`     |         | true       |        | RW  | GSD    |

- When true, allows the SRT socket to use the binding address used already by 
another SRT socket in the same application. Note that SRT socket uses an 
intermediate object called Multiplexer to access the underlying UDP sockets, 
so multiple SRT sockets may share one UDP socket, and the packets received by this 
UDP socket will be correctly dispatched to the SRT socket to which they are 
currently destined. This has some similarities to the `SO_REUSEADDR` system socket 
option, although it's only used inside SRT. 

- *TODO: This option weirdly only allows the socket used in **bind()** to use the 
local address that another socket is already using, but not to disallow another 
socket in the same application to use the binding address that the current 
socket is already using. What it actually changes is that when given an address in 
**bind()** is already used by another socket, this option will make the binding 
fail instead of adding the socket to the shared group of that socket that 
already has bound this address - but it will not disallow another socket to reuse 
its address.* 


[Return to list](#list-of-options)



#### SRTO_SENDER

| OptName           | Since | Binding | Type       |  Units  |   Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | ---------- | ------ | --- | ------ |
| `SRTO_SENDER`     | 1.0.4 | pre     | `bool`     |         | false      |        | W   | S      |

- Set sender side. The side that sets this flag is expected to be a sender. This 
flag is only required when communicating with a receiver that uses SRT version 
less than 1.3.0 (and hence *HSv4* handshake), in which case if not set properly, 
the TSBPD mode (see [`SRTO_TSBPDMODE`]#SRTO_TSBPDMODE) or encryption will not 
work. Setting `SRTO_MINVERSION` to 1.3.0 is therefore recommended.


[Return to list](#list-of-options)



#### SRTO_SNDBUF

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_SNDBUF`     |       | pre     | `int32_t`  | bytes   |8192 bufs  | *      | RW  | GSD+   |

- Sender Buffer Size. See [`SRTO_RCVBUF`]#SRTO_RCVBUF for more information.


[Return to list](#list-of-options)



#### SRTO_SNDDATA

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_SNDDATA`    |       |         | `int32_t`  | pkts    |           |        | R   | S      |

- Size of the unacknowledged data in send buffer.


[Return to list](#list-of-options)



#### SRTO_SNDDROPDELAY

| OptName              | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_SNDDROPDELAY`  | 1.3.2 | pre     | `int32_t`  | ms      | *         | -1..   | W   | GSD+   |

- Sets an extra delay before `TLPKTDROP` is triggered on the data sender.
This delay is added to the default drop delay time interval value. Keep in mind
that the longer the delay, the more probable it becomes that packets would be
retransmitted uselessly because they will be dropped by the receiver anyway.

- `TLPKTDROP` discards packets reported as lost if it is already too late to send 
them (the receiver would discard them even if received). The delay before the 
`TLPKTDROP` mechanism is triggered consists of the SRT latency (`SRTO_PEERLATENCY`), 
plus `SRTO_SNDDROPDELAY`, plus `2 * interval between sending ACKs` (where the 
default `interval between sending ACKs` is 10 milliseconds).
The minimum delay is `1000 + 2 * interval between sending ACKs` milliseconds.

- **Special value -1**: Do not drop packets on the sender at all (retransmit them 
  always when requested).

- Default: 0 in Live mode, -1 in File mode.



[Return to list](#list-of-options)



#### SRTO_SNDKMSTATE

| OptName              | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_SNDKMSTATE`    | 1.2.0 | post    | `int32_t`  |  enum   |           |        | R   | S      |

- Peer KM state on receiver side for `SRTO_KMSTATE`

- Values defined in enum [`SRT_KM_STATE`]#2-srt_km_state.


[Return to list](#list-of-options)



#### SRTO_SNDSYN

| OptName              | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_SNDSYN`        |       | post    | `bool`     |         | true      |        | RW  | GSI    |

- When true, sets blocking mode on writing function when it's not ready to
perform the operation. When false ("non-blocking mode"), the writing function
will in this case report error `SRT_EASYNCSND` and return immediately.

- On a connected socket or group this applies to a sending function
(`srt_send` and others) and a situation when there's no free space in
the sender buffer, caused by inability to send all the scheduled data over
the network. Readiness for this operation can be tested by checking the
`SRT_EPOLL_OUT` flag.

- On a freshly created socket or group it will have no effect until the socket
enters a connected state.

- On a listener socket it will be derived by the accepted socket or group,
but will have no effect on the listener socket itself.


[Return to list](#list-of-options)



#### SRTO_SNDTIMEO

| OptName              | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_SNDTIMEO`      |       | post    | `int32_t`  | ms      | -1        | -1..   | RW  | GSI    |

- limit the time up to which the sending operation will block (see
`SRTO_SNDSYN` for details), so when this time is exceeded, it will behave as
if in "non-blocking mode". The -1 value means no time limit.


[Return to list](#list-of-options)



#### SRTO_STATE

| OptName              | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_STATE`         |       |         | `int32_t`  |  enum   |           |        | R   | S      |

- Returns the current socket state, same as `srt_getsockstate`.



[Return to list](#list-of-options)



#### SRTO_STREAMID

| OptName              | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| -------------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_STREAMID`      | 1.3.0 | pre     | `string`   |         | ""        | [512]  | RW  | GSD    |

- A string that can be set on the socket prior to connecting. The listener side 
will be able to retrieve this stream ID from the socket that is returned from 
`srt_accept` (for a connected socket with that stream ID). You usually use SET 
on the socket used for `srt_connect`, and GET on the socket retrieved from 
`srt_accept`. This string can be used completely free-form. However, it's highly 
recommended to follow the [SRT Access Control guidlines]AccessControl.md.

- As this uses internally the `std::string` type, there are additional functions
for it in the legacy/C++ API (udt.h): `srt::setstreamid` and `srt::getstreamid`.

- This option is not useful for a Rendezvous connection, since one side would
override the value from the other side resulting in an arbitrary winner. Also
in this connection both peers are known to one another and both have equivalent 
roles in the connection.


[Return to list](#list-of-options)



#### SRTO_TLPKTDROP

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_TLPKTDROP`  | 1.0.6 | pre     | `bool`     |         | *         |        | RW  | GSD    |

- Too-late Packet Drop. When enabled on receiver, it skips missing packets that 
have not been delivered in time and delivers the subsequent packets to the 
application when their time-to-play has come. It also sends a fake ACK to the 
sender. When enabled on sender and enabled on the receiving peer, sender drops 
the older packets that have no chance to be delivered in time. It is automatically 
enabled in sender if receiver supports it.

- Default: true in Live mode, false in File mode (see [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE)


[Return to list](#list-of-options)



#### SRTO_TRANSTYPE

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_TRANSTYPE`  | 1.3.0 | pre     | `int32_t`  |  enum   |`SRTT_LIVE`| *      | W   | S      |

- Sets the transmission type for the socket, in particular, setting this option
sets multiple other parameters to their default values as required for a
particular transmission type.

- Values defined by enum `SRT_TRANSTYPE` (see above for possible values)


[Return to list](#list-of-options)



#### SRTO_TSBPDMODE

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_TSBPDMODE`  | 0.0.0 | pre     | `bool`     |         | *         |        | W   | S      |

- When true, use Timestamp-based Packet Delivery mode. In this mode the
packet's time is assigned at the sending time (or allowed to be predefined),
transmitted in the packet's header, and then restored on the receiver side so that
the time intervals between consecutive packets are preserved when delivering to
the application.

- Default: true in Live mode, false in File mode (see [`SRTO_TRANSTYPE`]#SRTO_TRANSTYPE).


[Return to list](#list-of-options)



#### SRTO_UDP_RCVBUF

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_UDP_RCVBUF` |       | pre     | `int32_t`  | bytes   | 8192 bufs | *      | RW  | GSD+   |

- UDP Socket Receive Buffer Size. Configured in bytes, maintained in packets 
based on MSS value. Receive buffer must not be greater than FC size.


[Return to list](#list-of-options)



#### SRTO_UDP_SNDBUF

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_UDP_SNDBUF` |       | pre     | `int32_t`  | bytes   | 65536     | *      | RW  | GSD+   |

- UDP Socket Send Buffer Size. Configured in bytes, maintained in packets based 
on `SRTO_MSS` value.


[Return to list](#list-of-options)



#### SRTO_VERSION

| OptName           | Since | Binding | Type       |  Units  |  Default  | Range  | Dir | Entity |
| ----------------- | ----- | ------- | ---------- | ------- | --------- | ------ | --- | ------ |
| `SRTO_VERSION`    | 1.1.0 |         | `int32_t`  |         |           |        | R   | S      |

- Local SRT version. This is the highest local version supported if not
  connected, or the highest version supported by the peer if connected.

- The version format in hex is `0x00XXYYZZ` for x.y.z in human readable form.
For example, version 1.4.2 is encoded as `0x010402`.


[Return to list](#list-of-options)