-
Notifications
You must be signed in to change notification settings - Fork 105
/
pcapy.xml
1402 lines (1294 loc) · 46.3 KB
/
pcapy.xml
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
<?xml version='1.0'?>
<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"docbook/dtd/xml/4.1.2/docbookx.dtd" [
<!ENTITY corest "CORE SECURITY TECHNOLOGIES">
]>
<part>
<partinfo>
<copyright>
<year>2016-2018</year>
<holder>&corest;</holder>
</copyright>
<corpauthor>&corest;</corpauthor>
<keywordset>
<keyword>pcap</keyword>
<keyword>packet</keyword>
<keyword>capture</keyword>
<keyword>python</keyword>
</keywordset>
<revhistory>
<revision>
<revnumber>Revision: 16</revnumber>
<date>Date: 2018-06-04</date>
<authorinitials>Author: jkohen</authorinitials>
<revremark>2018 updated</revremark>
</revision>
</revhistory>
</partinfo>
<title>Pcapy Reference</title>
<reference>
<title>Pcapy Module Reference</title>
<refentry>
<refnamediv>
<refname>open_live</refname>
<refpurpose>Obtain a packet capture descriptor to look at packets on the network</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
Reader <function>open_live</function>
</funcdef>
<paramdef>
string <parameter>device</parameter>
</paramdef>
<paramdef>
int <parameter>snaplen</parameter>
</paramdef>
<paramdef>
int <parameter>promisc</parameter>
</paramdef>
<paramdef>
int <parameter>to_ms</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>open_live</function> is used to obtain a packet
capture descriptor to look at packets on the network.
<parameter>device</parameter> is a string that specifies the
network device to open; on Linux systems with 2.2 or later
kernels, a device argument of <literal>any</literal> or
<constant>NULL</constant> can be used to capture packets
from all interfaces. <parameter>snaplen</parameter>
specifies the maximum number of bytes to capture.
<parameter>promisc</parameter> specifies if the interface is
to be put into promiscuous mode. (Note that even if this
parameter is false, the interface could well be in
promiscuous mode for some other reason.) For now, this
doesn't work on the <literal>any</literal> device; if an
argument of <literal>any</literal> or
<constant>NULL</constant> is supplied, the
<parameter>promisc</parameter> flag is ignored.
<parameter>to_ms</parameter> specifies the read timeout in
milliseconds. The read timeout is used to arrange that the
read not necessarily return immediately when a packet is
seen, but that it wait for some amount of time to allow more
packets to arrive and to read multiple packets from the OS
kernel in one operation. Not all platforms support a read
timeout; on platforms that don't, the read timeout is
ignored.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>open_offline</refname>
<refpurpose>
Obtain a packet capture descriptor to look at packets on a <glossterm>savefile</glossterm>
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
Reader <function>open_offline</function>
</funcdef>
<paramdef>
string <parameter>filename</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>open_offline</function> is called to open a
<glossterm>savefile</glossterm> for reading. <parameter>filename</parameter>
specifies the name of the file to open. The file has the
same format as those used by
<citerefentry>
<refentrytitle>tcpdump</refentrytitle>
<manvolnum>8</manvolnum>
</citerefentry> and
<citerefentry>
<refentrytitle>tcpslice</refentrytitle>
<manvolnum>8</manvolnum>
</citerefentry>. The name
<filename>-</filename> is a synonym for
<filename class="devicefile">stdin</filename>.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>lookupdev</refname>
<refpurpose>
Return a network device suitable for use with
<function>open_live</function>
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
string <function>lookupdev</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>lookupdev</function> returns the name of a network
device suitable for use with <function>open_live</function>.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>findalldevs</refname>
<refpurpose>Obtain the list of available network devices</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
string[] <function>findalldevs</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>findalldevs</function> constructs a list of
network devices that can be opened with
<function>open_live</function>. (Note that there may be
network devices that cannot be opened with
<function>open_live</function>, because, for example, that
process might not have sufficient privileges to open them
for capturing; if so, those devices will not appear on the
list.)
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>compile</refname>
<refpurpose>Compile a BPF filter</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
Bpf <function>compile</function>
</funcdef>
<paramdef>
int <parameter>linktype</parameter>
</paramdef>
<paramdef>
int <parameter>snaplen</parameter>
</paramdef>
<paramdef>
string <parameter>filter</parameter>
</paramdef>
<paramdef>
int <parameter>optimize</parameter>
</paramdef>
<paramdef>
int32 <parameter>netmask</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>compile</function> is used to compile the
<parameter>filter</parameter> into a filter program.
<function>snaplen</function> specifies the maximum number of
bytes to capture. <parameter>optimize</parameter> controls
whether optimization on the resulting code is performed.
<parameter>netmask</parameter> specifies the netmask of the
local network.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>create</refname>
<refpurpose>Creates a non-activated packet capture handle to look at packets on the network</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
Reader <function>create</function>
</funcdef>
<paramdef>
string <parameter>device</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>create</function> is used to create a
packet capture handle to look at packets on the network.
The returned handle must be activated with
<function>activate()</function> before packets can be captured
with it; options for the capture, such as promiscuous mode,
can be set on the handle before activating it.
</para>
</refsect1>
</refentry>
</reference>
<reference>
<title>Reader Object Reference</title>
<refentry>
<refnamediv>
<refname>dispatch</refname>
<refname>loop</refname>
<refpurpose>Collect and process packets</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>dispatch</function>
</funcdef>
<paramdef>
int <parameter>maxcant</parameter>
</paramdef>
<paramdef>
void <parameter>(* callback)</parameter>
<funcparams>Pkthdr, string</funcparams>
</paramdef>
</funcprototype>
<funcprototype>
<funcdef>
int <function>loop</function>
</funcdef>
<paramdef>
int <parameter>maxcant</parameter>
</paramdef>
<paramdef>
void <parameter>(* callback)</parameter>
<funcparams>Pkthdr, string</funcparams>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>dispatch</function> is used to collect and process
packets. <parameter>maxcant</parameter> specifies the
maximum number of packets to process before returning. This
is not a minimum number; when reading a live capture, only
one bufferful of packets is read at a time, so fewer than
<parameter>maxcant</parameter> packets may be processed. A
<parameter>cnt</parameter> of <literal>-1</literal>
processes all the packets received in one buffer when
reading a live capture, or all the packets in the file when
reading a <glossterm>savefile</glossterm>. <parameter>callback</parameter>
specifies a routine to be called with two arguments: a
<classname>Pkthdr</classname> instance describing the data
passed and the data itself.
</para>
<para>
The number of packets read is returned.
<returnvalue>0</returnvalue> is returned if no packets were
read from a live capture (if, for example, they were
discarded because they didn't pass the packet filter, or if,
on platforms that support a read timeout that starts before
any packets arrive, the timeout expires before any packets
arrive, or if the file descriptor for the capture device is
in non-blocking mode and no packets were available to be
read) or if no more packets are available in a <glossterm>savefile</glossterm>.
</para>
<note>
<para>
When reading a live capture, <function>dispatch</function>
will not necessarily return when the read times out; on
some platforms, the read timeout isn't supported, and, on
other platforms, the timer doesn't start until at least
one packet arrives. This means that the read timeout
should <emphasis>not</emphasis> be used in, for example,
an interactive application, to allow the packet capture
loop to poll for user input periodically, as there's no
guarantee that <function>dispatch</function> will return
after the timeout expires.
</para>
</note>
<para>
<function>loop</function> is similar to
<function>dispatch</function> except it keeps reading
packets until <parameter>maxcant</parameter> packets are
processed or an error occurs. It does
<emphasis>not</emphasis> return when live read timeouts
occur. Rather, specifying a non-zero read timeout to
<function>open_live</function> and then calling
<function>dispatch</function> allows the reception and
processing of any packets that arrive when the timeout
occurs. A negative <parameter>maxcant</parameter> causes
<function>loop</function> to loop forever (or at least until
an error occurs). <returnvalue>0</returnvalue> is returned
if <parameter>maxcant</parameter> is exhausted.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>next</refname>
<refpurpose>Collect the next packet</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
(Pkthdr, string) <function>next</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>next</function> reads the next packet (by calling
<function>dispatch</function> with a
<parameter>maxcant</parameter> of <constant>1</constant>)
and returns a tuple (header, data) where
<parameter>header</parameter> is a
<classname>Pkthdr</classname> instance describing the data
passed and <parameter>data</parameter> is the data itself.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>stats</refname>
<refpurpose>get capture statistics</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
(int32, int32, int32) <function>stats</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>stats</function> returns statistics on the current
capture as a tuple (recv, drop, ifdrop)
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>setfilter</refname>
<refpurpose>Specify a filter</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
<function>setfilter</function>
</funcdef>
<paramdef>
string <parameter>filter</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>setfilter</function> is used to specify a filter
for this object.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>getfd</refname>
<refpurpose>get a file descriptor on which a select() can be
done for a live capture</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>getfd</function>
</funcdef>
<paramdef>
string <parameter>filter</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>getfd</function> returns, on UNIX, a file descriptor
number for a file descriptor on which one can do a select(),
poll(), epoll_wait(), kevent(), or other such call to wait
for it to be possible to read packets without blocking, if
such a descriptor exists, or -1, if no such descriptor exists.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>set_snaplen</refname>
<refpurpose>Set the snapshot length for a not-yet-activated
capture handle</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>set_snaplen</function>
</funcdef>
<paramdef>
int <parameter>snaplen</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>set_snaplen</function> sets the snapshot length
to be used on a capture handle when the handle is activated
to snaplen.
<function>set_snaplen</function> returns 0 on success
or PCAP_ERROR_ACTIVATED if called on a capture handle that
has been activated.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>set_promisc</refname>
<refpurpose>Set promiscuous mode for a not-yet-activated
capture handle</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>set_promisc</function>
</funcdef>
<paramdef>
int <parameter>promisc</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>set_promisc</function> sets whether promiscuous mode
should be set on a capture handle when the handle is activated.
If promisc is non-zero, promiscuous mode will be set, otherwise
it will not be set.
<function>set_promisc</function> returns 0 on success
or PCAP_ERROR_ACTIVATED if called on a capture handle that
has been activated.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>set_timeout</refname>
<refpurpose>Set the read timeout for a not-yet-activated
capture handle</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>set_timeout</function>
</funcdef>
<paramdef>
int <parameter>timeout</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>set_timeout</function> sets the read timeout
that will be used on a capture handle when the handle
is activated to to_ms, which is in units of milliseconds.
<function>set_timeout</function> returns 0 on success
or PCAP_ERROR_ACTIVATED if called on a capture handle that
has been activated.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>set_buffer_size</refname>
<refpurpose>Set the buffer size for a not-yet-activated capture handle
capture handle</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>set_buffer_size</function>
</funcdef>
<paramdef>
int <parameter>buffer_size</parameter>
</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>set_buffer_size</function> sets the buffer size
that will be used on a capture handle when the handle is
activated to buffer_size, which is in units of bytes.
<function>set_buffer_size</function> returns 0 on success
or PCAP_ERROR_ACTIVATED if called on a capture handle that
has been activated.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>activate</refname>
<refpurpose>Activate a capture handle</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>activate</function>
</funcdef>
<void />
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>activate</function> is used to activate a
packet capture handle to look at packets on the network,
with the options that were set on the handle being in effect.
<function>activate</function> returns 0 on success without
warnings, a non-zero positive value on success with warnings,
and a negative value on error. A non-zero return value indicates
what warning or error condition occurred.
has been activated.
See https://www.tcpdump.org/manpages/pcap_activate.3pcap.html for
all possible return values.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>getnet</refname>
<refname>getmask</refname>
<refpurpose>Get the associated network number and mask</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int32 <function>getnet</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
<funcsynopsis>
<funcprototype>
<funcdef>
int32 <function>getmask</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>getnet</function> and <function>getmask</function>
are used to determine the network number and mask associated
with the network device attached to this
<classname>Reader</classname>.
</para>
</refsect1>
</refentry>
<refentry>
<refnamediv>
<refname>datalink</refname>
<refpurpose>Obtain the link layer type</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>
int <function>datalink</function>
</funcdef>
<void/>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
<function>datalink</function> returns the link layer type; link layer types it can return include:
<variablelist>
<varlistentry>
<term>
<constant>DLT_NULL</constant>
</term>
<listitem>
<simpara>
<acronym>BSD</acronym> loopback encapsulation; the
link layer header is a 4-byte field, in host
byte order, containing a <constant>PF_</constant>
value from <filename
class="headerfile">socket.h</filename> for the
network-layer protocol of the packet.
</simpara>
<note>
<simpara>
<quote>host byte order</quote> is the byte order
of the machine on which the packets are captured,
and the <constant>PF_</constant> values are for
the <acronym>OS</acronym> of the machine on which
the packets are captured; if a live capture is
being done, <quote>host byte order</quote> is the
byte order of the machine capturing the packets,
and the <constant>PF_</constant> values are those
of the <acronym>OS</acronym> of the machine
capturing the packets, but if a <glossterm>savefile</glossterm> is being
read, the byte order and <constant>PF_</constant>
values are <emphasis>not</emphasis> necessarily
those of the machine reading the capture file.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_EN10MB</constant>
</term>
<listitem>
<simpara>Ethernet (10Mb, 100Mb, 1000Mb, and up)</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_IEEE802</constant>
</term>
<listitem>
<simpara>
<acronym>IEEE</acronym> 802.5 Token Ring
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_ARCNET</constant>
</term>
<listitem>
<simpara>
<acronym>ARCNET</acronym>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_SLIP</constant>
</term>
<listitem>
<para>
<acronym>SLIP</acronym>; the link layer header contains, in order:
<itemizedlist>
<listitem>
<simpara>
a 1-byte flag, which is
<literal>0</literal> for packets received by
the machine and <literal>1</literal> for
packets sent by the machine.
</simpara>
</listitem>
<listitem>
<para>
a 1-byte field, the upper 4 bits of which indicate the type of packet, as per <acronym>RFC</acronym> 1144:
<itemizedlist>
<listitem>
<simpara>
<literal>0x40</literal>; an unmodified
<acronym>IP</acronym> datagram
(<constant>TYPE_IP</constant>)
</simpara>
</listitem>
<listitem>
<simpara>
<literal>0x70</literal>; an
uncompressed-<acronym>TCP/IP</acronym>
datagram
(<constant>UNCOMPRESSED_TCP</constant>),
with that byte being the first byte of
the raw <acronym>IP</acronym> header on
the wire, containing the connection
number in the protocol field
</simpara>
</listitem>
<listitem>
<simpara>
<literal>0x80</literal>; a
compressed-<acronym>TCP/IP</acronym>
datagram
(<constant>COMPRESSED_TCP</constant>),
with that byte being the first byte of
the compressed <acronym>TCP/IP</acronym>
datagram header
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<simpara>
for <constant>UNCOMPRESSED_TCP</constant>, the
rest of the modified <acronym>IP</acronym>
header, and for
<constant>COMPRESSED_TCP</constant>, the
compressed <acronym>TCP/IP</acronym> datagram
header
</simpara>
</listitem>
</itemizedlist>
for a total of 16 bytes; the uncompressed <acronym>IP</acronym> datagram follows the header.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_PPP</constant>
</term>
<listitem>
<simpara>
<acronym>PPP</acronym>; if the first 2 bytes are
<literal>0xff</literal> and <literal>0x03</literal>,
it's <acronym>PPP</acronym> in
<acronym>HDLC</acronym>-like framing, with the
<acronym>PPP</acronym> header following those two
bytes, otherwise it's <acronym>PPP</acronym> without
framing, and the packet begins with the
<acronym>PPP</acronym> header.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_FDDI</constant>
</term>
<listitem>
<simpara>
<acronym>FDDI</acronym>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_ATM_RFC1483</constant>
</term>
<listitem>
<simpara>
<acronym>RFC</acronym> 1483
<acronym>LLC/SNAP</acronym>-encapsulated
<acronym>ATM</acronym>; the packet begins with an
<acronym>IEEE</acronym> 802.2 <acronym>LLC</acronym>
header.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_RAW</constant>
</term>
<listitem>
<simpara>
Raw <acronym>IP</acronym>; the packet begins with an
<acronym>IP</acronym> header.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_PPP_SERIAL</constant>
</term>
<listitem>
<simpara>
<acronym>PPP</acronym> in
<acronym>HDLC</acronym>-like framing, as per
<acronym>RFC</acronym> 1662, or Cisco
<acronym>PPP</acronym> with <acronym>HDLC</acronym>
framing, as per section 4.3.1 of
<acronym>RFC</acronym> 1547; the first byte will be
<literal>0xFF</literal> for <acronym>PPP</acronym>
in <acronym>HDLC</acronym>-like framing, and
will be <literal>0x0F</literal> or
<literal>0x8F</literal> for Cisco
<acronym>PPP</acronym> with <acronym>HDLC</acronym>
framing.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_PPP_ETHER</constant>
</term>
<listitem>
<simpara>
<acronym>PPPoE</acronym>; the packet begins with a
<acronym>PPPoE</acronym> header, as per
<acronym>RFC</acronym> 2516.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_C_HDLC</constant>
</term>
<listitem>
<simpara>
Cisco <acronym>PPP</acronym> with
<acronym>HDLC</acronym> framing, as per section
4.3.1 of <acronym>RFC</acronym> 1547.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_IEEE802_11</constant>
</term>
<listitem>
<simpara>
<acronym>IEEE</acronym> 802.11 wireless
<acronym>LAN</acronym>.
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_LOOP</constant>
</term>
<listitem>
<simpara>
OpenBSD loopback encapsulation; the link layer
header is a 4-byte field, in network byte
order, containing a <constant>PF_</constant> value
from OpenBSD's <filename
class="headerfile">socket.h</filename> for the
network-layer protocol of the packet.
</simpara>
<note>
<simpara>
Note that, if a <glossterm>savefile</glossterm> is being read, those
<constant>PF_</constant> values are
<emphasis>not</emphasis> necessarily those of the
machine reading the capture file.
</simpara>
</note>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>DLT_LINUX_SLL</constant>
</term>
<listitem>
<para>
Linux cooked capture encapsulation; the link layer