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
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
// Copyright (c) 2014, 2015 Robert Clipsham <robert@octarineparrot.com>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use Packet;
use PrimitiveValues;
use ip::IpNextHeaderProtocols;

use pnet_macros_support::types::*;

use std::net::Ipv4Addr;
use std::net::Ipv6Addr;
use util::{self, Octets};

/// TCP flags
#[allow(non_snake_case)]
#[allow(non_upper_case_globals)]
pub mod TcpFlags {
    use pnet_macros_support::types::*;
    /// NS – ECN-nonce concealment protection (experimental: see RFC 3540).
    pub const NS: u9be = 0b100000000;
    /// CWR – Congestion Window Reduced (CWR) flag is set by the sending
    /// host to indicate that it received a TCP segment with the ECE flag set
    /// and had responded in congestion control mechanism (added to header by RFC 3168).
    pub const CWR: u9be = 0b010000000;
    /// ECE – ECN-Echo has a dual role, depending on the value of the
    /// SYN flag. It indicates:
    /// If the SYN flag is set (1), that the TCP peer is ECN capable.
    /// If the SYN flag is clear (0), that a packet with Congestion Experienced
    /// flag set (ECN=11) in IP header received during normal transmission
    /// (added to header by RFC 3168).
    pub const ECE: u9be = 0b001000000;
    /// URG – indicates that the Urgent pointer field is significant
    pub const URG: u9be = 0b000100000;
    /// ACK – indicates that the Acknowledgment field is significant.
    /// All packets after the initial SYN packet sent by the client should have this flag set.
    pub const ACK: u9be = 0b000010000;
    /// PSH – Push function. Asks to push the buffered data to the receiving application.
    pub const PSH: u9be = 0b000001000;
    /// RST – Reset the connection
    pub const RST: u9be = 0b000000100;
    /// SYN – Synchronize sequence numbers. Only the first packet sent from each end
    /// should have this flag set.
    pub const SYN: u9be = 0b000000010;
    /// FIN – No more data from sender
    pub const FIN: u9be = 0b000000001;
}











// The length field is an optional field, using a Vec is a way to implement
// it








/* number *//* length */













// Set data









 /* source */
 /* destination */
 /* seq */
 /* ack */
 /* length, flags, win */
 /* checksum */
 /* urg ptr */
 /* options: nop */
 /* timestamp */
 /* "test" */

 // no space for options
 // set invalid offset

 // shouldn't crash here

 // no space for options
 // set invalid offset

 // shouldn't crash here

 // no space for options
 // set invalid offset

 // shouldn't crash here

 // option type
 // option len, not enough space for it


 // set invalid offset

#[derive(PartialEq)]
/// A structure enabling manipulation of on the wire packets
pub struct TcpPacket<'p> {
    packet: ::pnet_macros_support::packet::PacketData<'p>,
}
#[derive(PartialEq)]
/// A structure enabling manipulation of on the wire packets
pub struct MutableTcpPacket<'p> {
    packet: ::pnet_macros_support::packet::MutPacketData<'p>,
}
impl <'a> TcpPacket<'a> {
    /// Constructs a new TcpPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None.
    #[inline]
    pub fn new<'p>(packet: &'p [u8]) -> Option<TcpPacket<'p>> {
        if packet.len() >= TcpPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::PacketData;
            Some(TcpPacket{packet: PacketData::Borrowed(packet),})
        } else { None }
    }
    /// Constructs a new TcpPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None. With this constructor the TcpPacket will
    /// own its own data and the underlying buffer will be dropped when the TcpPacket is.
    pub fn owned(packet: Vec<u8>) -> Option<TcpPacket<'static>> {
        if packet.len() >= TcpPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::PacketData;
            Some(TcpPacket{packet: PacketData::Owned(packet),})
        } else { None }
    }
    /// Maps from a TcpPacket to a TcpPacket
    #[inline]
    pub fn to_immutable<'p>(&'p self) -> TcpPacket<'p> {
        use ::pnet_macros_support::packet::PacketData;
        TcpPacket{packet: PacketData::Borrowed(self.packet.as_slice()),}
    }
    /// Maps from a TcpPacket to a TcpPacket while consuming the source
    #[inline]
    pub fn consume_to_immutable(self) -> TcpPacket<'a> {
        TcpPacket{packet: self.packet.to_immutable(),}
    }
    /// The minimum size (in bytes) a packet of this type can be. It's based on the total size
    /// of the fixed-size fields.
    #[inline]
    pub fn minimum_packet_size() -> usize { 20 }
    /// The size (in bytes) of a Tcp instance when converted into
    /// a byte-array
    #[inline]
    pub fn packet_size(_packet: &Tcp) -> usize {
        20 + _packet.options.len() + _packet.payload.len()
    }
    /// Get the source field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_source(&self) -> u16be {
        let _self = self;
        let co = 0;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the destination field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_destination(&self) -> u16be {
        let _self = self;
        let co = 2;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the sequence field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_sequence(&self) -> u32be {
        let _self = self;
        let co = 4;
        let b0 = ((_self.packet[co + 0] as u32be) << 24) as u32be;
        let b1 = ((_self.packet[co + 1] as u32be) << 16) as u32be;
        let b2 = ((_self.packet[co + 2] as u32be) << 8) as u32be;
        let b3 = ((_self.packet[co + 3] as u32be)) as u32be;
        b0 | b1 | b2 | b3
    }
    /// Get the acknowledgement field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_acknowledgement(&self) -> u32be {
        let _self = self;
        let co = 8;
        let b0 = ((_self.packet[co + 0] as u32be) << 24) as u32be;
        let b1 = ((_self.packet[co + 1] as u32be) << 16) as u32be;
        let b2 = ((_self.packet[co + 2] as u32be) << 8) as u32be;
        let b3 = ((_self.packet[co + 3] as u32be)) as u32be;
        b0 | b1 | b2 | b3
    }
    /// Get the data_offset field.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_data_offset(&self) -> u4 {
        let _self = self;
        let co = 12;
        ((_self.packet[co] as u4) & 240) >> 4
    }
    /// Get the reserved field.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_reserved(&self) -> u3 {
        let _self = self;
        let co = 12;
        ((_self.packet[co] as u3) & 14) >> 1
    }
    /// Get the flags field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_flags(&self) -> u9be {
        let _self = self;
        let co = 12;
        let b0 = (((_self.packet[co + 0] as u9be) & 1) << 8) as u9be;
        let b1 = ((_self.packet[co + 1] as u9be)) as u9be;
        b0 | b1
    }
    /// Get the window field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_window(&self) -> u16be {
        let _self = self;
        let co = 14;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the checksum field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_checksum(&self) -> u16be {
        let _self = self;
        let co = 16;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the urgent_ptr field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_urgent_ptr(&self) -> u16be {
        let _self = self;
        let co = 18;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the raw &[u8] value of the options field, without copying
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options_raw(&self) -> &[u8] {
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        &_self.packet[current_offset..end]
    }
    /// Get the value of the options field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options(&self) -> Vec<TcpOption> {
        use pnet_macros_support::packet::FromPacket;
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        TcpOptionIterable{buf:
                              &_self.packet[current_offset..end],}.map(|packet|
                                                                           packet.from_packet()).collect::<Vec<_>>()
    }
    /// Get the value of the options field as iterator
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options_iter(&self) -> TcpOptionIterable {
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        TcpOptionIterable{buf: &_self.packet[current_offset..end],}
    }
}
impl <'a> MutableTcpPacket<'a> {
    /// Constructs a new MutableTcpPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None.
    #[inline]
    pub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableTcpPacket<'p>> {
        if packet.len() >= MutableTcpPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::MutPacketData;
            Some(MutableTcpPacket{packet: MutPacketData::Borrowed(packet),})
        } else { None }
    }
    /// Constructs a new MutableTcpPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None. With this constructor the MutableTcpPacket will
    /// own its own data and the underlying buffer will be dropped when the MutableTcpPacket is.
    pub fn owned(packet: Vec<u8>) -> Option<MutableTcpPacket<'static>> {
        if packet.len() >= MutableTcpPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::MutPacketData;
            Some(MutableTcpPacket{packet: MutPacketData::Owned(packet),})
        } else { None }
    }
    /// Maps from a MutableTcpPacket to a TcpPacket
    #[inline]
    pub fn to_immutable<'p>(&'p self) -> TcpPacket<'p> {
        use ::pnet_macros_support::packet::PacketData;
        TcpPacket{packet: PacketData::Borrowed(self.packet.as_slice()),}
    }
    /// Maps from a MutableTcpPacket to a TcpPacket while consuming the source
    #[inline]
    pub fn consume_to_immutable(self) -> TcpPacket<'a> {
        TcpPacket{packet: self.packet.to_immutable(),}
    }
    /// The minimum size (in bytes) a packet of this type can be. It's based on the total size
    /// of the fixed-size fields.
    #[inline]
    pub fn minimum_packet_size() -> usize { 20 }
    /// The size (in bytes) of a Tcp instance when converted into
    /// a byte-array
    #[inline]
    pub fn packet_size(_packet: &Tcp) -> usize {
        20 + _packet.options.len() + _packet.payload.len()
    }
    /// Populates a TcpPacket using a Tcp structure
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn populate(&mut self, packet: &Tcp) {
        let _self = self;
        _self.set_source(packet.source);
        _self.set_destination(packet.destination);
        _self.set_sequence(packet.sequence);
        _self.set_acknowledgement(packet.acknowledgement);
        _self.set_data_offset(packet.data_offset);
        _self.set_reserved(packet.reserved);
        _self.set_flags(packet.flags);
        _self.set_window(packet.window);
        _self.set_checksum(packet.checksum);
        _self.set_urgent_ptr(packet.urgent_ptr);
        _self.set_options(&packet.options);
        _self.set_payload(&packet.payload);
    }
    /// Get the source field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_source(&self) -> u16be {
        let _self = self;
        let co = 0;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the destination field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_destination(&self) -> u16be {
        let _self = self;
        let co = 2;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the sequence field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_sequence(&self) -> u32be {
        let _self = self;
        let co = 4;
        let b0 = ((_self.packet[co + 0] as u32be) << 24) as u32be;
        let b1 = ((_self.packet[co + 1] as u32be) << 16) as u32be;
        let b2 = ((_self.packet[co + 2] as u32be) << 8) as u32be;
        let b3 = ((_self.packet[co + 3] as u32be)) as u32be;
        b0 | b1 | b2 | b3
    }
    /// Get the acknowledgement field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_acknowledgement(&self) -> u32be {
        let _self = self;
        let co = 8;
        let b0 = ((_self.packet[co + 0] as u32be) << 24) as u32be;
        let b1 = ((_self.packet[co + 1] as u32be) << 16) as u32be;
        let b2 = ((_self.packet[co + 2] as u32be) << 8) as u32be;
        let b3 = ((_self.packet[co + 3] as u32be)) as u32be;
        b0 | b1 | b2 | b3
    }
    /// Get the data_offset field.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_data_offset(&self) -> u4 {
        let _self = self;
        let co = 12;
        ((_self.packet[co] as u4) & 240) >> 4
    }
    /// Get the reserved field.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_reserved(&self) -> u3 {
        let _self = self;
        let co = 12;
        ((_self.packet[co] as u3) & 14) >> 1
    }
    /// Get the flags field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_flags(&self) -> u9be {
        let _self = self;
        let co = 12;
        let b0 = (((_self.packet[co + 0] as u9be) & 1) << 8) as u9be;
        let b1 = ((_self.packet[co + 1] as u9be)) as u9be;
        b0 | b1
    }
    /// Get the window field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_window(&self) -> u16be {
        let _self = self;
        let co = 14;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the checksum field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_checksum(&self) -> u16be {
        let _self = self;
        let co = 16;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the urgent_ptr field. This field is always stored big-endian
    /// within the struct, but this accessor returns host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_urgent_ptr(&self) -> u16be {
        let _self = self;
        let co = 18;
        let b0 = ((_self.packet[co + 0] as u16be) << 8) as u16be;
        let b1 = ((_self.packet[co + 1] as u16be)) as u16be;
        b0 | b1
    }
    /// Get the raw &[u8] value of the options field, without copying
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options_raw(&self) -> &[u8] {
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        &_self.packet[current_offset..end]
    }
    /// Get the value of the options field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options(&self) -> Vec<TcpOption> {
        use pnet_macros_support::packet::FromPacket;
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        TcpOptionIterable{buf:
                              &_self.packet[current_offset..end],}.map(|packet|
                                                                           packet.from_packet()).collect::<Vec<_>>()
    }
    /// Get the value of the options field as iterator
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options_iter(&self) -> TcpOptionIterable {
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        TcpOptionIterable{buf: &_self.packet[current_offset..end],}
    }
    /// Set the source field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_source(&mut self, val: u16be) {
        let _self = self;
        let co = 0;
        _self.packet[co + 0] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 1] = (val) as u8;
    }
    /// Set the destination field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_destination(&mut self, val: u16be) {
        let _self = self;
        let co = 2;
        _self.packet[co + 0] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 1] = (val) as u8;
    }
    /// Set the sequence field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_sequence(&mut self, val: u32be) {
        let _self = self;
        let co = 4;
        _self.packet[co + 0] = ((val & 4278190080) >> 24) as u8;
        _self.packet[co + 1] = ((val & 16711680) >> 16) as u8;
        _self.packet[co + 2] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 3] = (val) as u8;
    }
    /// Set the acknowledgement field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_acknowledgement(&mut self, val: u32be) {
        let _self = self;
        let co = 8;
        _self.packet[co + 0] = ((val & 4278190080) >> 24) as u8;
        _self.packet[co + 1] = ((val & 16711680) >> 16) as u8;
        _self.packet[co + 2] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 3] = (val) as u8;
    }
    /// Set the data_offset field.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_data_offset(&mut self, val: u4) {
        let _self = self;
        let co = 12;
        _self.packet[co + 0] =
            ((_self.packet[co + 0] & 15) | (((val & 15) << 4) as u8)) as u8;
    }
    /// Set the reserved field.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_reserved(&mut self, val: u3) {
        let _self = self;
        let co = 12;
        _self.packet[co + 0] =
            ((_self.packet[co + 0] & 241) | (((val & 7) << 1) as u8)) as u8;
    }
    /// Set the flags field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_flags(&mut self, val: u9be) {
        let _self = self;
        let co = 12;
        _self.packet[co + 0] =
            ((_self.packet[co + 0] & 254) | (((val & 256) >> 8) as u8)) as u8;
        _self.packet[co + 1] = (val) as u8;
    }
    /// Set the window field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_window(&mut self, val: u16be) {
        let _self = self;
        let co = 14;
        _self.packet[co + 0] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 1] = (val) as u8;
    }
    /// Set the checksum field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_checksum(&mut self, val: u16be) {
        let _self = self;
        let co = 16;
        _self.packet[co + 0] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 1] = (val) as u8;
    }
    /// Set the urgent_ptr field. This field is always stored big-endian
    /// within the struct, but this mutator wants host order.
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_urgent_ptr(&mut self, val: u16be) {
        let _self = self;
        let co = 18;
        _self.packet[co + 0] = ((val & 65280) >> 8) as u8;
        _self.packet[co + 1] = (val) as u8;
    }
    /// Get the raw &mut [u8] value of the options field, without copying
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_options_raw_mut(&mut self) -> &mut [u8] {
        use std::cmp::min;
        let _self = self;
        let current_offset = 20;
        let end =
            min(current_offset + tcp_options_length(&_self.to_immutable()),
                _self.packet.len());
        &mut _self.packet[current_offset..end]
    }
    /// Set the value of the options field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_options(&mut self, vals: &[TcpOption]) {
        use pnet_macros_support::packet::PacketSize;
        let _self = self;
        let mut current_offset = 20;
        let end = current_offset + tcp_options_length(&_self.to_immutable());
        for val in vals.into_iter() {
            let mut packet =
                MutableTcpOptionPacket::new(&mut _self.packet[current_offset..]).unwrap();
            packet.populate(val);
            current_offset += packet.packet_size();
            assert!(current_offset <= end);
        }
    }
    /// Set the value of the payload field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_payload(&mut self, vals: &[u8]) {
        use std::ptr::copy_nonoverlapping;
        let mut _self = self;
        let current_offset = 20 + tcp_options_length(&_self.to_immutable());
        unsafe {
            copy_nonoverlapping(vals[..].as_ptr(),
                                _self.packet[current_offset..].as_mut_ptr(),
                                vals.len())
        }
    }
}
impl <'a> ::pnet_macros_support::packet::PacketSize for TcpPacket<'a> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn packet_size(&self) -> usize {
        let _self = self;
        20 + tcp_options_length(&_self.to_immutable())
    }
}
impl <'a> ::pnet_macros_support::packet::PacketSize for MutableTcpPacket<'a> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn packet_size(&self) -> usize {
        let _self = self;
        20 + tcp_options_length(&_self.to_immutable())
    }
}
impl <'a> ::pnet_macros_support::packet::MutablePacket for
 MutableTcpPacket<'a> {
    #[inline]
    fn packet_mut<'p>(&'p mut self) -> &'p mut [u8] { &mut self.packet[..] }
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn payload_mut<'p>(&'p mut self) -> &'p mut [u8] {
        let _self = self;
        let start = 20 + tcp_options_length(&_self.to_immutable());
        if _self.packet.len() <= start { return &mut []; }
        &mut _self.packet[start..]
    }
}
impl <'a> ::pnet_macros_support::packet::Packet for MutableTcpPacket<'a> {
    #[inline]
    fn packet<'p>(&'p self) -> &'p [u8] { &self.packet[..] }
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn payload<'p>(&'p self) -> &'p [u8] {
        let _self = self;
        let start = 20 + tcp_options_length(&_self.to_immutable());
        if _self.packet.len() <= start { return &[]; }
        &_self.packet[start..]
    }
}
impl <'a> ::pnet_macros_support::packet::Packet for TcpPacket<'a> {
    #[inline]
    fn packet<'p>(&'p self) -> &'p [u8] { &self.packet[..] }
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn payload<'p>(&'p self) -> &'p [u8] {
        let _self = self;
        let start = 20 + tcp_options_length(&_self.to_immutable());
        if _self.packet.len() <= start { return &[]; }
        &_self.packet[start..]
    }
}
/// Used to iterate over a slice of `TcpPacket`s
pub struct TcpIterable<'a> {
    buf: &'a [u8],
}
impl <'a> Iterator for TcpIterable<'a> {
    type
    Item
    =
    TcpPacket<'a>;
    fn next(&mut self) -> Option<TcpPacket<'a>> {
        use pnet_macros_support::packet::PacketSize;
        use std::cmp::min;
        if self.buf.len() > 0 {
            if let Some(ret) = TcpPacket::new(self.buf) {
                let start = min(ret.packet_size(), self.buf.len());
                self.buf = &self.buf[start..];
                return Some(ret);
            }
        }
        None
    }
    fn size_hint(&self) -> (usize, Option<usize>) { (0, None) }
}
impl <'p> ::pnet_macros_support::packet::FromPacket for TcpPacket<'p> {
    type
    T
    =
    Tcp;
    #[inline]
    fn from_packet(&self) -> Tcp {
        use pnet_macros_support::packet::Packet;
        let _self = self;
        Tcp{source: _self.get_source(),
            destination: _self.get_destination(),
            sequence: _self.get_sequence(),
            acknowledgement: _self.get_acknowledgement(),
            data_offset: _self.get_data_offset(),
            reserved: _self.get_reserved(),
            flags: _self.get_flags(),
            window: _self.get_window(),
            checksum: _self.get_checksum(),
            urgent_ptr: _self.get_urgent_ptr(),
            options: _self.get_options(),
            payload:
                {
                    let payload = self.payload();
                    let mut vec = Vec::with_capacity(payload.len());
                    vec.extend_from_slice(payload);
                    vec
                },}
    }
}
impl <'p> ::pnet_macros_support::packet::FromPacket for MutableTcpPacket<'p> {
    type
    T
    =
    Tcp;
    #[inline]
    fn from_packet(&self) -> Tcp {
        use pnet_macros_support::packet::Packet;
        let _self = self;
        Tcp{source: _self.get_source(),
            destination: _self.get_destination(),
            sequence: _self.get_sequence(),
            acknowledgement: _self.get_acknowledgement(),
            data_offset: _self.get_data_offset(),
            reserved: _self.get_reserved(),
            flags: _self.get_flags(),
            window: _self.get_window(),
            checksum: _self.get_checksum(),
            urgent_ptr: _self.get_urgent_ptr(),
            options: _self.get_options(),
            payload:
                {
                    let payload = self.payload();
                    let mut vec = Vec::with_capacity(payload.len());
                    vec.extend_from_slice(payload);
                    vec
                },}
    }
}
impl <'p> ::std::fmt::Debug for TcpPacket<'p> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        let _self = self;
        write!(fmt ,
               "TcpPacket {{ source : {:?}, destination : {:?}, sequence : {:?}, acknowledgement : {:?}, data_offset : {:?}, reserved : {:?}, flags : {:?}, window : {:?}, checksum : {:?}, urgent_ptr : {:?}, options : {:?},  }}"
               , _self . get_source (  ) , _self . get_destination (  ) ,
               _self . get_sequence (  ) , _self . get_acknowledgement (  ) ,
               _self . get_data_offset (  ) , _self . get_reserved (  ) ,
               _self . get_flags (  ) , _self . get_window (  ) , _self .
               get_checksum (  ) , _self . get_urgent_ptr (  ) , _self .
               get_options (  ))
    }
}
impl <'p> ::std::fmt::Debug for MutableTcpPacket<'p> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        let _self = self;
        write!(fmt ,
               "MutableTcpPacket {{ source : {:?}, destination : {:?}, sequence : {:?}, acknowledgement : {:?}, data_offset : {:?}, reserved : {:?}, flags : {:?}, window : {:?}, checksum : {:?}, urgent_ptr : {:?}, options : {:?},  }}"
               , _self . get_source (  ) , _self . get_destination (  ) ,
               _self . get_sequence (  ) , _self . get_acknowledgement (  ) ,
               _self . get_data_offset (  ) , _self . get_reserved (  ) ,
               _self . get_flags (  ) , _self . get_window (  ) , _self .
               get_checksum (  ) , _self . get_urgent_ptr (  ) , _self .
               get_options (  ))
    }
}
/// Represents a TCP Packet
#[derive(Clone, Debug)]
#[allow(unused_attributes)]
pub struct Tcp {
    pub source: u16be,
    pub destination: u16be,
    pub sequence: u32be,
    pub acknowledgement: u32be,
    pub data_offset: u4,
    pub reserved: u3,
    pub flags: u9be,
    pub window: u16be,
    pub checksum: u16be,
    pub urgent_ptr: u16be,
    pub options: Vec<TcpOption>,
    pub payload: Vec<u8>,
}
/// Represents a TCP option
#[derive(Hash, Ord, PartialOrd, Eq, PartialEq, Debug, Copy, Clone)]
pub struct TcpOptionNumber(pub u8);
/// TCP header options
#[allow(non_snake_case)]
#[allow(non_upper_case_globals)]
pub mod TcpOptionNumbers {
    use super::TcpOptionNumber;
    /// End of Options list
    pub const EOL: TcpOptionNumber = TcpOptionNumber(0);
    /// No operation
    pub const NOP: TcpOptionNumber = TcpOptionNumber(1);
    /// Maximum segment size
    pub const MSS: TcpOptionNumber = TcpOptionNumber(2);
    /// Window scale
    pub const WSCALE: TcpOptionNumber = TcpOptionNumber(3);
    /// Selective acknowledgements permitted
    pub const SACK_PERMITTED: TcpOptionNumber = TcpOptionNumber(4);
    /// Selective acknowledgment
    pub const SACK: TcpOptionNumber = TcpOptionNumber(5);
    /// Timestamps
    pub const TIMESTAMPS: TcpOptionNumber = TcpOptionNumber(8);
}
#[derive(PartialEq)]
/// A structure enabling manipulation of on the wire packets
pub struct TcpOptionPacket<'p> {
    packet: ::pnet_macros_support::packet::PacketData<'p>,
}
#[derive(PartialEq)]
/// A structure enabling manipulation of on the wire packets
pub struct MutableTcpOptionPacket<'p> {
    packet: ::pnet_macros_support::packet::MutPacketData<'p>,
}
impl <'a> TcpOptionPacket<'a> {
    /// Constructs a new TcpOptionPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None.
    #[inline]
    pub fn new<'p>(packet: &'p [u8]) -> Option<TcpOptionPacket<'p>> {
        if packet.len() >= TcpOptionPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::PacketData;
            Some(TcpOptionPacket{packet: PacketData::Borrowed(packet),})
        } else { None }
    }
    /// Constructs a new TcpOptionPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None. With this constructor the TcpOptionPacket will
    /// own its own data and the underlying buffer will be dropped when the TcpOptionPacket is.
    pub fn owned(packet: Vec<u8>) -> Option<TcpOptionPacket<'static>> {
        if packet.len() >= TcpOptionPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::PacketData;
            Some(TcpOptionPacket{packet: PacketData::Owned(packet),})
        } else { None }
    }
    /// Maps from a TcpOptionPacket to a TcpOptionPacket
    #[inline]
    pub fn to_immutable<'p>(&'p self) -> TcpOptionPacket<'p> {
        use ::pnet_macros_support::packet::PacketData;
        TcpOptionPacket{packet: PacketData::Borrowed(self.packet.as_slice()),}
    }
    /// Maps from a TcpOptionPacket to a TcpOptionPacket while consuming the source
    #[inline]
    pub fn consume_to_immutable(self) -> TcpOptionPacket<'a> {
        TcpOptionPacket{packet: self.packet.to_immutable(),}
    }
    /// The minimum size (in bytes) a packet of this type can be. It's based on the total size
    /// of the fixed-size fields.
    #[inline]
    pub fn minimum_packet_size() -> usize { 1 }
    /// The size (in bytes) of a TcpOption instance when converted into
    /// a byte-array
    #[inline]
    pub fn packet_size(_packet: &TcpOption) -> usize {
        1 + _packet.length.len() + _packet.data.len()
    }
    /// Get the value of the number field
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_number(&self) -> TcpOptionNumber {
        #[inline(always)]
        #[allow(trivial_numeric_casts)]
        #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
        fn get_arg0(_self: &TcpOptionPacket) -> u8 {
            let co = 0;
            (_self.packet[co] as u8)
        }
        TcpOptionNumber::new(get_arg0(&self))
    }
    /// Get the raw &[u8] value of the length field, without copying
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_length_raw(&self) -> &[u8] {
        use std::cmp::min;
        let _self = self;
        let current_offset = 1;
        let end =
            min(current_offset + tcp_option_length(&_self.to_immutable()),
                _self.packet.len());
        &_self.packet[current_offset..end]
    }
    /// Get the value of the length field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_length(&self) -> Vec<u8> {
        use std::cmp::min;
        let _self = self;
        let current_offset = 1;
        let pkt_len = self.packet.len();
        let end =
            min(current_offset + tcp_option_length(&_self.to_immutable()),
                pkt_len);
        let packet = &_self.packet[current_offset..end];
        let mut vec: Vec<u8> = Vec::with_capacity(packet.len());
        let mut co = 0;
        for _ in 0..vec.capacity() {
            vec.push({ (packet[co] as u8) });
            co += 1;
        }
        vec
    }
}
impl <'a> MutableTcpOptionPacket<'a> {
    /// Constructs a new MutableTcpOptionPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None.
    #[inline]
    pub fn new<'p>(packet: &'p mut [u8])
     -> Option<MutableTcpOptionPacket<'p>> {
        if packet.len() >= MutableTcpOptionPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::MutPacketData;
            Some(MutableTcpOptionPacket{packet:
                                            MutPacketData::Borrowed(packet),})
        } else { None }
    }
    /// Constructs a new MutableTcpOptionPacket. If the provided buffer is less than the minimum required
    /// packet size, this will return None. With this constructor the MutableTcpOptionPacket will
    /// own its own data and the underlying buffer will be dropped when the MutableTcpOptionPacket is.
    pub fn owned(packet: Vec<u8>) -> Option<MutableTcpOptionPacket<'static>> {
        if packet.len() >= MutableTcpOptionPacket::minimum_packet_size() {
            use ::pnet_macros_support::packet::MutPacketData;
            Some(MutableTcpOptionPacket{packet:
                                            MutPacketData::Owned(packet),})
        } else { None }
    }
    /// Maps from a MutableTcpOptionPacket to a TcpOptionPacket
    #[inline]
    pub fn to_immutable<'p>(&'p self) -> TcpOptionPacket<'p> {
        use ::pnet_macros_support::packet::PacketData;
        TcpOptionPacket{packet: PacketData::Borrowed(self.packet.as_slice()),}
    }
    /// Maps from a MutableTcpOptionPacket to a TcpOptionPacket while consuming the source
    #[inline]
    pub fn consume_to_immutable(self) -> TcpOptionPacket<'a> {
        TcpOptionPacket{packet: self.packet.to_immutable(),}
    }
    /// The minimum size (in bytes) a packet of this type can be. It's based on the total size
    /// of the fixed-size fields.
    #[inline]
    pub fn minimum_packet_size() -> usize { 1 }
    /// The size (in bytes) of a TcpOption instance when converted into
    /// a byte-array
    #[inline]
    pub fn packet_size(_packet: &TcpOption) -> usize {
        1 + _packet.length.len() + _packet.data.len()
    }
    /// Populates a TcpOptionPacket using a TcpOption structure
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn populate(&mut self, packet: &TcpOption) {
        let _self = self;
        _self.set_number(packet.number);
        _self.set_length(&packet.length);
        _self.set_data(&packet.data);
    }
    /// Get the value of the number field
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_number(&self) -> TcpOptionNumber {
        #[inline(always)]
        #[allow(trivial_numeric_casts)]
        #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
        fn get_arg0(_self: &MutableTcpOptionPacket) -> u8 {
            let co = 0;
            (_self.packet[co] as u8)
        }
        TcpOptionNumber::new(get_arg0(&self))
    }
    /// Get the raw &[u8] value of the length field, without copying
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_length_raw(&self) -> &[u8] {
        use std::cmp::min;
        let _self = self;
        let current_offset = 1;
        let end =
            min(current_offset + tcp_option_length(&_self.to_immutable()),
                _self.packet.len());
        &_self.packet[current_offset..end]
    }
    /// Get the value of the length field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_length(&self) -> Vec<u8> {
        use std::cmp::min;
        let _self = self;
        let current_offset = 1;
        let pkt_len = self.packet.len();
        let end =
            min(current_offset + tcp_option_length(&_self.to_immutable()),
                pkt_len);
        let packet = &_self.packet[current_offset..end];
        let mut vec: Vec<u8> = Vec::with_capacity(packet.len());
        let mut co = 0;
        for _ in 0..vec.capacity() {
            vec.push({ (packet[co] as u8) });
            co += 1;
        }
        vec
    }
    /// Set the value of the number field
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_number(&mut self, val: TcpOptionNumber) {
        use pnet_macros_support::packet::PrimitiveValues;
        let _self = self;
        #[inline]
        #[allow(trivial_numeric_casts)]
        #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
        fn set_arg0(_self: &mut MutableTcpOptionPacket, val: u8) {
            let co = 0;
            _self.packet[co + 0] = (val) as u8;
        }
        let vals = val.to_primitive_values();
        set_arg0(_self, vals.0);
    }
    /// Get the raw &mut [u8] value of the length field, without copying
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn get_length_raw_mut(&mut self) -> &mut [u8] {
        use std::cmp::min;
        let _self = self;
        let current_offset = 1;
        let end =
            min(current_offset + tcp_option_length(&_self.to_immutable()),
                _self.packet.len());
        &mut _self.packet[current_offset..end]
    }
    /// Set the value of the length field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_length(&mut self, vals: &[u8]) {
        use std::ptr::copy_nonoverlapping;
        let mut _self = self;
        let current_offset = 1;
        let len = tcp_option_length(&_self.to_immutable());
        assert!(vals . len (  ) <= len);
        unsafe {
            copy_nonoverlapping(vals[..].as_ptr(),
                                _self.packet[current_offset..].as_mut_ptr(),
                                vals.len())
        }
    }
    /// Set the value of the data field (copies contents)
    #[inline]
    #[allow(trivial_numeric_casts)]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    pub fn set_data(&mut self, vals: &[u8]) {
        use std::ptr::copy_nonoverlapping;
        let mut _self = self;
        let current_offset = 1 + tcp_option_length(&_self.to_immutable());
        let len = tcp_option_payload_length(&_self.to_immutable());
        assert!(vals . len (  ) <= len);
        unsafe {
            copy_nonoverlapping(vals[..].as_ptr(),
                                _self.packet[current_offset..].as_mut_ptr(),
                                vals.len())
        }
    }
}
impl <'a> ::pnet_macros_support::packet::PacketSize for TcpOptionPacket<'a> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn packet_size(&self) -> usize {
        let _self = self;
        1 + tcp_option_length(&_self.to_immutable()) +
            tcp_option_payload_length(&_self.to_immutable())
    }
}
impl <'a> ::pnet_macros_support::packet::PacketSize for
 MutableTcpOptionPacket<'a> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn packet_size(&self) -> usize {
        let _self = self;
        1 + tcp_option_length(&_self.to_immutable()) +
            tcp_option_payload_length(&_self.to_immutable())
    }
}
impl <'a> ::pnet_macros_support::packet::MutablePacket for
 MutableTcpOptionPacket<'a> {
    #[inline]
    fn packet_mut<'p>(&'p mut self) -> &'p mut [u8] { &mut self.packet[..] }
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn payload_mut<'p>(&'p mut self) -> &'p mut [u8] {
        let _self = self;
        let start = 1 + tcp_option_length(&_self.to_immutable());
        let end =
            ::std::cmp::min(1 + tcp_option_length(&_self.to_immutable()) +
                                tcp_option_payload_length(&_self.to_immutable()),
                            _self.packet.len());
        if _self.packet.len() <= start { return &mut []; }
        &mut _self.packet[start..end]
    }
}
impl <'a> ::pnet_macros_support::packet::Packet for MutableTcpOptionPacket<'a>
 {
    #[inline]
    fn packet<'p>(&'p self) -> &'p [u8] { &self.packet[..] }
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn payload<'p>(&'p self) -> &'p [u8] {
        let _self = self;
        let start = 1 + tcp_option_length(&_self.to_immutable());
        let end =
            ::std::cmp::min(1 + tcp_option_length(&_self.to_immutable()) +
                                tcp_option_payload_length(&_self.to_immutable()),
                            _self.packet.len());
        if _self.packet.len() <= start { return &[]; }
        &_self.packet[start..end]
    }
}
impl <'a> ::pnet_macros_support::packet::Packet for TcpOptionPacket<'a> {
    #[inline]
    fn packet<'p>(&'p self) -> &'p [u8] { &self.packet[..] }
    #[inline]
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn payload<'p>(&'p self) -> &'p [u8] {
        let _self = self;
        let start = 1 + tcp_option_length(&_self.to_immutable());
        let end =
            ::std::cmp::min(1 + tcp_option_length(&_self.to_immutable()) +
                                tcp_option_payload_length(&_self.to_immutable()),
                            _self.packet.len());
        if _self.packet.len() <= start { return &[]; }
        &_self.packet[start..end]
    }
}
/// Used to iterate over a slice of `TcpOptionPacket`s
pub struct TcpOptionIterable<'a> {
    buf: &'a [u8],
}
impl <'a> Iterator for TcpOptionIterable<'a> {
    type
    Item
    =
    TcpOptionPacket<'a>;
    fn next(&mut self) -> Option<TcpOptionPacket<'a>> {
        use pnet_macros_support::packet::PacketSize;
        use std::cmp::min;
        if self.buf.len() > 0 {
            if let Some(ret) = TcpOptionPacket::new(self.buf) {
                let start = min(ret.packet_size(), self.buf.len());
                self.buf = &self.buf[start..];
                return Some(ret);
            }
        }
        None
    }
    fn size_hint(&self) -> (usize, Option<usize>) { (0, None) }
}
impl <'p> ::pnet_macros_support::packet::FromPacket for TcpOptionPacket<'p> {
    type
    T
    =
    TcpOption;
    #[inline]
    fn from_packet(&self) -> TcpOption {
        use pnet_macros_support::packet::Packet;
        let _self = self;
        TcpOption{number: _self.get_number(),
                  length: _self.get_length(),
                  data:
                      {
                          let payload = self.payload();
                          let mut vec = Vec::with_capacity(payload.len());
                          vec.extend_from_slice(payload);
                          vec
                      },}
    }
}
impl <'p> ::pnet_macros_support::packet::FromPacket for
 MutableTcpOptionPacket<'p> {
    type
    T
    =
    TcpOption;
    #[inline]
    fn from_packet(&self) -> TcpOption {
        use pnet_macros_support::packet::Packet;
        let _self = self;
        TcpOption{number: _self.get_number(),
                  length: _self.get_length(),
                  data:
                      {
                          let payload = self.payload();
                          let mut vec = Vec::with_capacity(payload.len());
                          vec.extend_from_slice(payload);
                          vec
                      },}
    }
}
impl <'p> ::std::fmt::Debug for TcpOptionPacket<'p> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        let _self = self;
        write!(fmt , "TcpOptionPacket {{ number : {:?}, length : {:?},  }}" ,
               _self . get_number (  ) , _self . get_length (  ))
    }
}
impl <'p> ::std::fmt::Debug for MutableTcpOptionPacket<'p> {
    #[cfg_attr(feature = "clippy", allow(used_underscore_binding))]
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        let _self = self;
        write!(fmt ,
               "MutableTcpOptionPacket {{ number : {:?}, length : {:?},  }}" ,
               _self . get_number (  ) , _self . get_length (  ))
    }
}
/// TCP option
#[derive(Clone, Debug)]
#[allow(unused_attributes)]
pub struct TcpOption {
    number: TcpOptionNumber,
    length: Vec<u8>,
    data: Vec<u8>,
}
impl TcpOption {
    /// NOP: This may be used to align option fields on 32-bit boundaries for better performance.
    pub fn nop() -> Self {
        TcpOption{number: TcpOptionNumbers::NOP,
                  length: vec!(),
                  data: vec!(),}
    }
    /// Timestamp: TCP timestamps, defined in RFC 1323, can help TCP determine in which order
    /// packets were sent. TCP timestamps are not normally aligned to the system clock and
    /// start at some random value.
    pub fn timestamp(my: u32, their: u32) -> Self {
        let mut data = vec!();
        data.extend_from_slice(&my.octets()[..]);
        data.extend_from_slice(&their.octets()[..]);
        TcpOption{number: TcpOptionNumbers::TIMESTAMPS,
                  length: vec!(10),
                  data: data,}
    }
    /// MSS: The maximum segment size (MSS) is the largest amount of data, specified in bytes,
    /// that TCP is willing to receive in a single segment.
    pub fn mss(val: u16) -> Self {
        let mut data = vec!();
        data.extend_from_slice(&val.octets()[..]);
        TcpOption{number: TcpOptionNumbers::MSS, length: vec!(4), data: data,}
    }
    /// Window scale: The TCP window scale option, as defined in RFC 1323, is an option used to
    /// increase the maximum window size from 65,535 bytes to 1 gigabyte.
    pub fn wscale(val: u8) -> Self {
        TcpOption{number: TcpOptionNumbers::WSCALE,
                  length: vec!(3),
                  data: vec!(val),}
    }
    /// Selective acknowledgment (SACK) option, defined in RFC 2018 allows the receiver to acknowledge
    /// discontinuous blocks of packets which were received correctly. This options enables use of
    /// SACK during negotiation.
    pub fn sack_perm() -> Self {
        TcpOption{number: TcpOptionNumbers::SACK_PERMITTED,
                  length: vec!(2),
                  data: vec!(),}
    }
    /// Selective acknowledgment (SACK) option, defined in RFC 2018 allows the receiver to acknowledge
    /// discontinuous blocks of packets which were received correctly. The acknowledgement can specify
    /// a number of SACK blocks, where each SACK block is conveyed by the starting and ending sequence
    /// numbers of a contiguous range that the receiver correctly received.
    pub fn selective_ack(acks: &[u32]) -> Self {
        let mut data = vec!();
        for ack in acks { data.extend_from_slice(&ack.octets()[..]); }
        TcpOption{number: TcpOptionNumbers::SACK,
                  length: vec!(1 + 1 + data . len (  ) as u8),
                  data: data,}
    }
}
/// This function gets the 'length' of the length field of the IPv4Option packet
/// Few options (EOL, NOP) are 1 bytes long, and then have a length field equal
/// to 0
#[inline]
fn tcp_option_length(option: &TcpOptionPacket) -> usize {
    match option.get_number() {
        TcpOptionNumbers::EOL => 0,
        TcpOptionNumbers::NOP => 0,
        _ => 1,
    }
}
fn tcp_option_payload_length(ipv4_option: &TcpOptionPacket) -> usize {
    match ipv4_option.get_length_raw().first() {
        Some(len) if *len >= 2 => (*len as usize) - 2,
        _ => 0,
    }
}
impl TcpOptionNumber {
    /// Create a new TcpOptionNumber
    pub fn new(value: u8) -> TcpOptionNumber { TcpOptionNumber(value) }
}
impl PrimitiveValues for TcpOptionNumber {
    type
    T
    =
    (u8,);
    fn to_primitive_values(&self) -> (u8,) { (self.0,) }
}
#[inline]
fn tcp_options_length(tcp: &TcpPacket) -> usize {
    let data_offset = tcp.get_data_offset();
    if data_offset > 5 { (data_offset as usize) * 4 - 20 } else { 0 }
}
/// Calculate the checksum for a packet built on IPv4
pub fn ipv4_checksum(packet: &TcpPacket, source: &Ipv4Addr,
                     destination: &Ipv4Addr) -> u16 {
    ipv4_checksum_adv(packet, &[], source, destination)
}
/// Calculate the checksum for a packet built on IPv4, Advanced version which
/// accepts an extra slice of data that will be included in the checksum
/// as being part of the data portion of the packet.
///
/// If `packet` contains an odd number of bytes the last byte will not be
/// counted as the first byte of a word together with the first byte of
/// `extra_data`.
pub fn ipv4_checksum_adv(packet: &TcpPacket, extra_data: &[u8],
                         source: &Ipv4Addr, destination: &Ipv4Addr) -> u16 {
    util::ipv4_checksum(packet.packet(), 8, extra_data, source, destination,
                        IpNextHeaderProtocols::Tcp)
}
/// Calculate the checksum for a packet built on IPv6
pub fn ipv6_checksum(packet: &TcpPacket, source: &Ipv6Addr,
                     destination: &Ipv6Addr) -> u16 {
    ipv6_checksum_adv(packet, &[], source, destination)
}
/// Calculate the checksum for a packet built on IPv6, Advanced version which
/// accepts an extra slice of data that will be included in the checksum
/// as being part of the data portion of the packet.
///
/// If `packet` contains an odd number of bytes the last byte will not be
/// counted as the first byte of a word together with the first byte of
/// `extra_data`.
pub fn ipv6_checksum_adv(packet: &TcpPacket, extra_data: &[u8],
                         source: &Ipv6Addr, destination: &Ipv6Addr) -> u16 {
    util::ipv6_checksum(packet.packet(), 8, extra_data, source, destination,
                        IpNextHeaderProtocols::Tcp)
}
#[test]
fn tcp_header_ipv4_test() {
    use ip::IpNextHeaderProtocols;
    use ipv4::MutableIpv4Packet;
    const IPV4_HEADER_LEN: usize = 20;
    const TCP_HEADER_LEN: usize = 32;
    const TEST_DATA_LEN: usize = 4;
    let mut packet = [0u8; IPV4_HEADER_LEN + TCP_HEADER_LEN + TEST_DATA_LEN];
    let ipv4_source = Ipv4Addr::new(192, 168, 2, 1);
    let ipv4_destination = Ipv4Addr::new(192, 168, 111, 51);
    {
        let mut ip_header = MutableIpv4Packet::new(&mut packet[..]).unwrap();
        ip_header.set_next_level_protocol(IpNextHeaderProtocols::Tcp);
        ip_header.set_source(ipv4_source);
        ip_header.set_destination(ipv4_destination);
    }
    packet[IPV4_HEADER_LEN + TCP_HEADER_LEN] = 't' as u8;
    packet[IPV4_HEADER_LEN + TCP_HEADER_LEN + 1] = 'e' as u8;
    packet[IPV4_HEADER_LEN + TCP_HEADER_LEN + 2] = 's' as u8;
    packet[IPV4_HEADER_LEN + TCP_HEADER_LEN + 3] = 't' as u8;
    {
        let mut tcp_header =
            MutableTcpPacket::new(&mut packet[IPV4_HEADER_LEN..]).unwrap();
        tcp_header.set_source(49511);
        assert_eq!(tcp_header . get_source (  ) , 49511);
        tcp_header.set_destination(9000);
        assert_eq!(tcp_header . get_destination (  ) , 9000);
        tcp_header.set_sequence(2419577528);
        assert_eq!(tcp_header . get_sequence (  ) , 0x9037d2b8);
        tcp_header.set_acknowledgement(2487988854);
        assert_eq!(tcp_header . get_acknowledgement (  ) , 0x944bb276);
        tcp_header.set_flags(TcpFlags::PSH | TcpFlags::ACK);
        assert_eq!(tcp_header . get_flags (  ) , TcpFlags :: PSH | TcpFlags ::
                   ACK);
        tcp_header.set_window(4015);
        assert_eq!(tcp_header . get_window (  ) , 4015);
        tcp_header.set_data_offset(8);
        assert_eq!(tcp_header . get_data_offset (  ) , 8);
        let ts = TcpOption::timestamp(743951781, 44056978);
        tcp_header.set_options(&vec!(TcpOption :: nop (  ) , TcpOption :: nop
                                     (  ) , ts));
        let checksum =
            ipv4_checksum(&tcp_header.to_immutable(), &ipv4_source,
                          &ipv4_destination);
        tcp_header.set_checksum(checksum);
        assert_eq!(tcp_header . get_checksum (  ) , 0xc031);
    }
    let ref_packet =
        [193, 103, 35, 40, 144, 55, 210, 184, 148, 75, 178, 118, 128, 24, 15,
         175, 192, 49, 0, 0, 1, 1, 8, 10, 44, 87, 205, 165, 2, 160, 65, 146,
         116, 101, 115, 116];
    assert_eq!(& ref_packet [ .. ] , & packet [ 20 .. ]);
}
#[test]
fn tcp_test_options_invalid_offset() {
    let mut buf = [0; 20];
    {
        if let Some(mut tcp) = MutableTcpPacket::new(&mut buf[..]) {
            tcp.set_data_offset(10);
        }
    }
    if let Some(tcp) = TcpPacket::new(&buf[..]) {
        let _options = tcp.get_options_iter();
    }
}
#[test]
fn tcp_test_options_vec_invalid_offset() {
    let mut buf = [0; 20];
    {
        if let Some(mut tcp) = MutableTcpPacket::new(&mut buf[..]) {
            tcp.set_data_offset(10);
        }
    }
    if let Some(tcp) = TcpPacket::new(&buf[..]) {
        let _options = tcp.get_options();
    }
}
#[test]
fn tcp_test_options_slice_invalid_offset() {
    let mut buf = [0; 20];
    {
        if let Some(mut tcp) = MutableTcpPacket::new(&mut buf[..]) {
            tcp.set_data_offset(10);
        }
    }
    if let Some(tcp) = TcpPacket::new(&buf[..]) {
        let _options = tcp.get_options_raw();
    }
}
#[test]
fn tcp_test_option_invalid_len() {
    let mut buf = [0; 24];
    {
        if let Some(mut tcp) = MutableTcpPacket::new(&mut buf[..]) {
            tcp.set_data_offset(6);
        }
        buf[20] = 2;
        buf[21] = 8;
    }
    if let Some(tcp) = TcpPacket::new(&buf[..]) {
        let options = tcp.get_options_iter();
        for opt in options { println!("{:?}" , opt); }
    }
}
#[test]
fn tcp_test_payload_slice_invalid_offset() {
    let mut buf = [0; 20];
    {
        if let Some(mut tcp) = MutableTcpPacket::new(&mut buf[..]) {
            tcp.set_data_offset(10);
        }
    }
    if let Some(tcp) = TcpPacket::new(&buf[..]) {
        assert_eq!(tcp . payload (  ) . len (  ) , 0);
    }
}