summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/winpcap/docs/html/group__remote__pri__struct.html
blob: d64b2fc1e8e33661a4042a1eed6a00fb91c22fc3 (plain) (blame)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>WinPcap: Internal Structures and Definitions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="main.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
</div>
<div class="contents">
<h1>Internal Structures and Definitions<br/>
<small>
[<a class="el" href="group__remote.html">Remote Capture</a>]</small>
</h1><table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Data Structures</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structactivehosts.html">activehosts</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Keeps a list of all the opened connections in the active mode.  <a href="structactivehosts.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__header.html">rpcap_header</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Common header for all the RPCAP messages.  <a href="structrpcap__header.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__findalldevs__if.html">rpcap_findalldevs_if</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Format of the message for the interface description (findalldevs command).  <a href="structrpcap__findalldevs__if.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__findalldevs__ifaddr.html">rpcap_findalldevs_ifaddr</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Format of the message for the address listing (findalldevs command).  <a href="structrpcap__findalldevs__ifaddr.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__openreply.html">rpcap_openreply</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Format of the message of the connection opening reply (open command).  <a href="structrpcap__openreply.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__startcapreq.html">rpcap_startcapreq</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Format of the message that starts a remote capture (startcap command).  <a href="structrpcap__startcapreq.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__startcapreply.html">rpcap_startcapreply</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Format of the reply message that devoted to start a remote capture (startcap reply command).  <a href="structrpcap__startcapreply.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__pkthdr.html">rpcap_pkthdr</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Format of the header which encapsulates captured packets when transmitted on the network.  <a href="structrpcap__pkthdr.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__filter.html">rpcap_filter</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">General header used for the <a class="el" href="group__wpcapfunc.html#gaf5f9cfe85dad0967ff607e5159b1ba61" title="Associate a filter to a capture.">pcap_setfilter()</a> command; keeps just the number of BPF instructions.  <a href="structrpcap__filter.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__filterbpf__insn.html">rpcap_filterbpf_insn</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Structure that keeps a single BPF instuction; it is repeated 'ninsn' times according to the 'rpcap_filterbpf' header.  <a href="structrpcap__filterbpf__insn.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__auth.html">rpcap_auth</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Structure that keeps the data required for the authentication on the remote host.  <a href="structrpcap__auth.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__stats.html">rpcap_stats</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Structure that keeps the statistics about the number of packets captured, dropped, etc.  <a href="structrpcap__stats.html#_details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structrpcap__sampling.html">rpcap_sampling</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Structure that is needed to set sampling parameters.  <a href="structrpcap__sampling.html#_details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gadd48856fd036eb39b1374e8722b83970">RPCAP_DEFAULT_NETPORT</a>&nbsp;&nbsp;&nbsp;&quot;2002&quot;</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga3faff98b6c9e4560e58beb8ca5d62473">RPCAP_DEFAULT_NETPORT_ACTIVE</a>&nbsp;&nbsp;&nbsp;&quot;2003&quot;</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga652ea27f0736f2ed16eff2f8232be733">RPCAP_DEFAULT_NETADDR</a>&nbsp;&nbsp;&nbsp;&quot;&quot;</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gadd52d73598f0b006a4634f6f40c85e3e">RPCAP_VERSION</a>&nbsp;&nbsp;&nbsp;0</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gad5f148b0c94a8c6162ee79c33463ac95">RPCAP_TIMEOUT_INIT</a>&nbsp;&nbsp;&nbsp;90</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga1d5a54e68e71ec6de7e3d9d1b5dc35bc">RPCAP_TIMEOUT_RUNTIME</a>&nbsp;&nbsp;&nbsp;180</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga8f32f1a7e4afc75d85adee7aa1136e2b">RPCAP_ACTIVE_WAIT</a>&nbsp;&nbsp;&nbsp;30</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga5bac38979d12b0a8755d70981fb387af">RPCAP_SUSPEND_WRONGAUTH</a>&nbsp;&nbsp;&nbsp;1</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gac094e3209a4b7fc379b034d3dc37acb0">RPCAP_NETBUF_SIZE</a>&nbsp;&nbsp;&nbsp;64000</td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Buffer used by socket functions to send-receive packets. In case you plan to have messages larger than this value, you have to increase it.  <a href="#gac094e3209a4b7fc379b034d3dc37acb0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga9ca2e46ddec1744b0442e42fc77dbc36">RPCAP_HOSTLIST_SEP</a>&nbsp;&nbsp;&nbsp;&quot; ,;\n\r&quot;</td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Separators used for the host list.  <a href="#ga9ca2e46ddec1744b0442e42fc77dbc36"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gae794b40128a8f48e8aab742c499e4c5c">RPCAP_MSG_ERROR</a>&nbsp;&nbsp;&nbsp;1</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gac1cca8dabd5af5293a0e41515bc532a5">RPCAP_MSG_FINDALLIF_REQ</a>&nbsp;&nbsp;&nbsp;2</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gac99b71c29a3177c663b099c417d1de91">RPCAP_MSG_OPEN_REQ</a>&nbsp;&nbsp;&nbsp;3</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga082b424838496c8cc92dcadf6333b9e1">RPCAP_MSG_STARTCAP_REQ</a>&nbsp;&nbsp;&nbsp;4</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga8c77cf6f710b92b3f87257e7d03d6677">RPCAP_MSG_UPDATEFILTER_REQ</a>&nbsp;&nbsp;&nbsp;5</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gaaca8c569d09dd1c7b2a7cfebe2ed5017">RPCAP_MSG_CLOSE</a>&nbsp;&nbsp;&nbsp;6</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gaaa605dc088c22dd9064a38d16a5199b9">RPCAP_MSG_PACKET</a>&nbsp;&nbsp;&nbsp;7</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga967ed95127e15aae04df68d128b32dcd">RPCAP_MSG_AUTH_REQ</a>&nbsp;&nbsp;&nbsp;8</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga29508e4fba57e33978c73997630b8159">RPCAP_MSG_STATS_REQ</a>&nbsp;&nbsp;&nbsp;9</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gad6554d0a3e2e81d440a216e9ed207c99">RPCAP_MSG_ENDCAP_REQ</a>&nbsp;&nbsp;&nbsp;10</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga2d8c7f1e4361c748ccc051c276f5eaa9">RPCAP_MSG_SETSAMPLING_REQ</a>&nbsp;&nbsp;&nbsp;11</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gab60aca69282ead1088a4565d47bdc05e">RPCAP_MSG_FINDALLIF_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_FINDALLIF_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga753597c2ff993d12156d7922116b1835">RPCAP_MSG_OPEN_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_OPEN_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga22dcbe343e2103aef2e9856f93f40167">RPCAP_MSG_STARTCAP_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_STARTCAP_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gaeb2561c1c6c9b9c56f4ac14ab70f6c3a">RPCAP_MSG_UPDATEFILTER_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_UPDATEFILTER_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga558198e22dad94774670d4901069761b">RPCAP_MSG_AUTH_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_AUTH_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga3d52f2b6b3210dcb4f0db7bd8b46138e">RPCAP_MSG_STATS_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_STATS_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga2994f9df11cfc2b2dd0e9a9d9ac4f37b">RPCAP_MSG_ENDCAP_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_ENDCAP_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga59a57a83acc395c5e508dda7b8c33bad">RPCAP_MSG_SETSAMPLING_REPLY</a>&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_SETSAMPLING_REQ)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga3d0b7b3a3d97ebdd265ab800a004ae8c">RPCAP_STARTCAPREQ_FLAG_PROMISC</a>&nbsp;&nbsp;&nbsp;1</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga3f87b7e89ed61dc2c9956234399058e8">RPCAP_STARTCAPREQ_FLAG_DGRAM</a>&nbsp;&nbsp;&nbsp;2</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga0c5a71a9b6d5be2662c5a8872cf3032c">RPCAP_STARTCAPREQ_FLAG_SERVEROPEN</a>&nbsp;&nbsp;&nbsp;4</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gac22aa6103fe1490ab908a26d5c4a7c8a">RPCAP_STARTCAPREQ_FLAG_INBOUND</a>&nbsp;&nbsp;&nbsp;8</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga2b29630fe7963da543db242459c74832">RPCAP_STARTCAPREQ_FLAG_OUTBOUND</a>&nbsp;&nbsp;&nbsp;16</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gac93bee6a0991d4334eacd6e451b54240">RPCAP_UPDATEFILTER_BPF</a>&nbsp;&nbsp;&nbsp;1</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga281ffdbe28e312f9fe6bc22c4d14fd68">PCAP_ERR_NETW</a>&nbsp;&nbsp;&nbsp;1</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga43cc461cdabd8d39ca2346f10c233a1b">PCAP_ERR_INITTIMEOUT</a>&nbsp;&nbsp;&nbsp;2</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga5c8c6dd12f4fcdeaefd0f8d4a67b3075">PCAP_ERR_AUTH</a>&nbsp;&nbsp;&nbsp;3</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gadfbdeb5279422bc65233eefeca885661">PCAP_ERR_FINDALLIF</a>&nbsp;&nbsp;&nbsp;4</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga9f540070da23a5e61d0e27a61a300639">PCAP_ERR_NOREMOTEIF</a>&nbsp;&nbsp;&nbsp;5</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga3bfdce6d89b764b103404a1ec08bc4f9">PCAP_ERR_OPEN</a>&nbsp;&nbsp;&nbsp;6</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gae12279008dbc82da60f457ae639d9c98">PCAP_ERR_UPDATEFILTER</a>&nbsp;&nbsp;&nbsp;7</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gaf2e8f37c8ecf045242e00d9d138d4130">PCAP_ERR_GETSTATS</a>&nbsp;&nbsp;&nbsp;8</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga61631ebf63be764b06b1259fcded1b4d">PCAP_ERR_READEX</a>&nbsp;&nbsp;&nbsp;9</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga77b7c5dbb7399e0f73c3105c181c0eba">PCAP_ERR_HOSTNOAUTH</a>&nbsp;&nbsp;&nbsp;10</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga005853d9f448e2125b9c907cd68ae77a">PCAP_ERR_REMOTEACCEPT</a>&nbsp;&nbsp;&nbsp;11</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga2342b31cd1b83713b43e29fc1b8bbe80">PCAP_ERR_STARTCAPTURE</a>&nbsp;&nbsp;&nbsp;12</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga7237f6698352751c08de3b10ae711881">PCAP_ERR_ENDCAPTURE</a>&nbsp;&nbsp;&nbsp;13</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga9a98b752c9427a52b1902b6a4aa9845a">PCAP_ERR_RUNTIMETIMEOUT</a>&nbsp;&nbsp;&nbsp;14</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gad904f96dcd2dc7ead1f50e81d27a87ee">PCAP_ERR_SETSAMPLING</a>&nbsp;&nbsp;&nbsp;15</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gaadf8ebdb03c2852d32084792c32f5014">PCAP_ERR_WRONGMSG</a>&nbsp;&nbsp;&nbsp;16</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga27644e4198a710a3fb6763464b4cceb8">PCAP_ERR_WRONGVER</a>&nbsp;&nbsp;&nbsp;17</td></tr>
<tr><td colspan="2"><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef unsigned char&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#gadde6aaee8457bee49c2a92621fe22b79">uint8</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Provides an 8-bits unsigned integer.  <a href="#gadde6aaee8457bee49c2a92621fe22b79"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef unsigned short&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga05f6b0ae8f6a6e135b0e290c25fe0e4e">uint16</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Provides a 16-bits unsigned integer.  <a href="#ga05f6b0ae8f6a6e135b0e290c25fe0e4e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef unsigned int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga1134b580f8da4de94ca6b1de4d37975e">uint32</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Provides a 32-bits unsigned integer.  <a href="#ga1134b580f8da4de94ca6b1de4d37975e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__pri__struct.html#ga56f1a81c92849566ae864511088eb7e8">int32</a></td></tr>
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Provides a 32-bits integer.  <a href="#ga56f1a81c92849566ae864511088eb7e8"></a><br/></td></tr>
</table>
<hr/><h2>Define Documentation</h2>
<a class="anchor" id="ga5c8c6dd12f4fcdeaefd0f8d4a67b3075"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_AUTH" ref="ga5c8c6dd12f4fcdeaefd0f8d4a67b3075" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_AUTH&nbsp;&nbsp;&nbsp;3</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic authentication error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00313">313</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga7237f6698352751c08de3b10ae711881"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_ENDCAPTURE" ref="ga7237f6698352751c08de3b10ae711881" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_ENDCAPTURE&nbsp;&nbsp;&nbsp;13</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic pcap_endcapture error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00323">323</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gadfbdeb5279422bc65233eefeca885661"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_FINDALLIF" ref="gadfbdeb5279422bc65233eefeca885661" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_FINDALLIF&nbsp;&nbsp;&nbsp;4</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic findalldevs error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00314">314</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gaf2e8f37c8ecf045242e00d9d138d4130"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_GETSTATS" ref="gaf2e8f37c8ecf045242e00d9d138d4130" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_GETSTATS&nbsp;&nbsp;&nbsp;8</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic pcap_stats error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00318">318</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga77b7c5dbb7399e0f73c3105c181c0eba"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_HOSTNOAUTH" ref="ga77b7c5dbb7399e0f73c3105c181c0eba" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_HOSTNOAUTH&nbsp;&nbsp;&nbsp;10</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The host is not authorized to connect to this server </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00320">320</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga43cc461cdabd8d39ca2346f10c233a1b"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_INITTIMEOUT" ref="ga43cc461cdabd8d39ca2346f10c233a1b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_INITTIMEOUT&nbsp;&nbsp;&nbsp;2</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The RPCAP initial timeout has expired </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00312">312</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga281ffdbe28e312f9fe6bc22c4d14fd68"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_NETW" ref="ga281ffdbe28e312f9fe6bc22c4d14fd68" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_NETW&nbsp;&nbsp;&nbsp;1</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Network error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00311">311</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga9f540070da23a5e61d0e27a61a300639"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_NOREMOTEIF" ref="ga9f540070da23a5e61d0e27a61a300639" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_NOREMOTEIF&nbsp;&nbsp;&nbsp;5</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The findalldevs was ok, but the remote end had no interfaces to list </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00315">315</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga3bfdce6d89b764b103404a1ec08bc4f9"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_OPEN" ref="ga3bfdce6d89b764b103404a1ec08bc4f9" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_OPEN&nbsp;&nbsp;&nbsp;6</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic pcap_open error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00316">316</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga61631ebf63be764b06b1259fcded1b4d"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_READEX" ref="ga61631ebf63be764b06b1259fcded1b4d" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_READEX&nbsp;&nbsp;&nbsp;9</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic pcap_next_ex error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00319">319</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga005853d9f448e2125b9c907cd68ae77a"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_REMOTEACCEPT" ref="ga005853d9f448e2125b9c907cd68ae77a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_REMOTEACCEPT&nbsp;&nbsp;&nbsp;11</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic pcap_remoteaccept error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00321">321</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga9a98b752c9427a52b1902b6a4aa9845a"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_RUNTIMETIMEOUT" ref="ga9a98b752c9427a52b1902b6a4aa9845a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_RUNTIMETIMEOUT&nbsp;&nbsp;&nbsp;14</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The RPCAP run-time timeout has expired </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00324">324</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gad904f96dcd2dc7ead1f50e81d27a87ee"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_SETSAMPLING" ref="gad904f96dcd2dc7ead1f50e81d27a87ee" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_SETSAMPLING&nbsp;&nbsp;&nbsp;15</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Error diring the settings of sampling parameters </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00325">325</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga2342b31cd1b83713b43e29fc1b8bbe80"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_STARTCAPTURE" ref="ga2342b31cd1b83713b43e29fc1b8bbe80" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_STARTCAPTURE&nbsp;&nbsp;&nbsp;12</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic pcap_startcapture error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00322">322</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gae12279008dbc82da60f457ae639d9c98"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_UPDATEFILTER" ref="gae12279008dbc82da60f457ae639d9c98" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_UPDATEFILTER&nbsp;&nbsp;&nbsp;7</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Generic updatefilter error </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00317">317</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gaadf8ebdb03c2852d32084792c32f5014"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_WRONGMSG" ref="gaadf8ebdb03c2852d32084792c32f5014" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_WRONGMSG&nbsp;&nbsp;&nbsp;16</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The other end endpoint sent a message which has not been recognized </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00326">326</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga27644e4198a710a3fb6763464b4cceb8"></a><!-- doxytag: member="pcap&#45;remote.h::PCAP_ERR_WRONGVER" ref="ga27644e4198a710a3fb6763464b4cceb8" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define PCAP_ERR_WRONGVER&nbsp;&nbsp;&nbsp;17</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The other end endpoint ahs a version number that is not compatible with our </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00327">327</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga8f32f1a7e4afc75d85adee7aa1136e2b"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_ACTIVE_WAIT" ref="ga8f32f1a7e4afc75d85adee7aa1136e2b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_ACTIVE_WAIT&nbsp;&nbsp;&nbsp;30</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Waiting time betweek two attempts to open a connection, in active mode (default: 30 sec) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00092">92</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga652ea27f0736f2ed16eff2f8232be733"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_DEFAULT_NETADDR" ref="ga652ea27f0736f2ed16eff2f8232be733" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_DEFAULT_NETADDR&nbsp;&nbsp;&nbsp;&quot;&quot;</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Default network address on which the RPCAP daemon binds to. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00088">88</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gadd48856fd036eb39b1374e8722b83970"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_DEFAULT_NETPORT" ref="gadd48856fd036eb39b1374e8722b83970" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_DEFAULT_NETPORT&nbsp;&nbsp;&nbsp;&quot;2002&quot;</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Default port on which the RPCAP daemon is waiting for connections. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00085">85</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga3faff98b6c9e4560e58beb8ca5d62473"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_DEFAULT_NETPORT_ACTIVE" ref="ga3faff98b6c9e4560e58beb8ca5d62473" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_DEFAULT_NETPORT_ACTIVE&nbsp;&nbsp;&nbsp;&quot;2003&quot;</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Default port on which the client workstation is waiting for connections in case of active mode. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00087">87</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga9ca2e46ddec1744b0442e42fc77dbc36"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_HOSTLIST_SEP" ref="ga9ca2e46ddec1744b0442e42fc77dbc36" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_HOSTLIST_SEP&nbsp;&nbsp;&nbsp;&quot; ,;\n\r&quot;</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Separators used for the host list. </p>
<p>It is used:</p>
<ul>
<li>by the rpcapd daemon, when you types a list of allowed connecting hosts</li>
<li>by the rpcap in active mode, when the client waits for incoming connections from other hosts </li>
</ul>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00109">109</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga558198e22dad94774670d4901069761b"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_AUTH_REPLY" ref="ga558198e22dad94774670d4901069761b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_AUTH_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_AUTH_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Sends a message that says 'ok, authorization successful' </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00296">296</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga967ed95127e15aae04df68d128b32dcd"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_AUTH_REQ" ref="ga967ed95127e15aae04df68d128b32dcd" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_AUTH_REQ&nbsp;&nbsp;&nbsp;8</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Message that keeps the authentication parameters </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00287">287</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gaaca8c569d09dd1c7b2a7cfebe2ed5017"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_CLOSE" ref="gaaca8c569d09dd1c7b2a7cfebe2ed5017" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_CLOSE&nbsp;&nbsp;&nbsp;6</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Close the connection with the remote peer </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00285">285</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga2994f9df11cfc2b2dd0e9a9d9ac4f37b"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_ENDCAP_REPLY" ref="ga2994f9df11cfc2b2dd0e9a9d9ac4f37b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_ENDCAP_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_ENDCAP_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Confirms that the capture stopped succesfully </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00298">298</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gad6554d0a3e2e81d440a216e9ed207c99"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_ENDCAP_REQ" ref="gad6554d0a3e2e81d440a216e9ed207c99" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_ENDCAP_REQ&nbsp;&nbsp;&nbsp;10</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Stops the current capture, keeping the device open </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00289">289</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gae794b40128a8f48e8aab742c499e4c5c"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_ERROR" ref="gae794b40128a8f48e8aab742c499e4c5c" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_ERROR&nbsp;&nbsp;&nbsp;1</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Message that keeps an error notification </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00280">280</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gab60aca69282ead1088a4565d47bdc05e"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_FINDALLIF_REPLY" ref="gab60aca69282ead1088a4565d47bdc05e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_FINDALLIF_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_FINDALLIF_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Keeps the list of all the remote interfaces </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00292">292</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gac1cca8dabd5af5293a0e41515bc532a5"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_FINDALLIF_REQ" ref="gac1cca8dabd5af5293a0e41515bc532a5" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_FINDALLIF_REQ&nbsp;&nbsp;&nbsp;2</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Request to list all the remote interfaces </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00281">281</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga753597c2ff993d12156d7922116b1835"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_OPEN_REPLY" ref="ga753597c2ff993d12156d7922116b1835" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_OPEN_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_OPEN_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The remote device has been opened correctly </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00293">293</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gac99b71c29a3177c663b099c417d1de91"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_OPEN_REQ" ref="gac99b71c29a3177c663b099c417d1de91" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_OPEN_REQ&nbsp;&nbsp;&nbsp;3</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Request to open a remote device </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00282">282</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gaaa605dc088c22dd9064a38d16a5199b9"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_PACKET" ref="gaaa605dc088c22dd9064a38d16a5199b9" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_PACKET&nbsp;&nbsp;&nbsp;7</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>This is a 'data' message, which carries a network packet </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00286">286</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga59a57a83acc395c5e508dda7b8c33bad"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_SETSAMPLING_REPLY" ref="ga59a57a83acc395c5e508dda7b8c33bad" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_SETSAMPLING_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_SETSAMPLING_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Confirms that the capture stopped succesfully </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00299">299</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga2d8c7f1e4361c748ccc051c276f5eaa9"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_SETSAMPLING_REQ" ref="ga2d8c7f1e4361c748ccc051c276f5eaa9" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_SETSAMPLING_REQ&nbsp;&nbsp;&nbsp;11</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Sset sampling parameters </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00290">290</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga22dcbe343e2103aef2e9856f93f40167"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_STARTCAP_REPLY" ref="ga22dcbe343e2103aef2e9856f93f40167" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_STARTCAP_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_STARTCAP_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The capture is staarting correctly </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00294">294</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga082b424838496c8cc92dcadf6333b9e1"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_STARTCAP_REQ" ref="ga082b424838496c8cc92dcadf6333b9e1" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_STARTCAP_REQ&nbsp;&nbsp;&nbsp;4</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Request to start a capture on a remote device </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00283">283</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga3d52f2b6b3210dcb4f0db7bd8b46138e"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_STATS_REPLY" ref="ga3d52f2b6b3210dcb4f0db7bd8b46138e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_STATS_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_STATS_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Message that keeps the network statistics </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00297">297</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga29508e4fba57e33978c73997630b8159"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_STATS_REQ" ref="ga29508e4fba57e33978c73997630b8159" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_STATS_REQ&nbsp;&nbsp;&nbsp;9</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>It requires to have network statistics </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00288">288</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gaeb2561c1c6c9b9c56f4ac14ab70f6c3a"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_UPDATEFILTER_REPLY" ref="gaeb2561c1c6c9b9c56f4ac14ab70f6c3a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_UPDATEFILTER_REPLY&nbsp;&nbsp;&nbsp;(128+RPCAP_MSG_UPDATEFILTER_REQ)</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The filter has been applied correctly on the remote device </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00295">295</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga8c77cf6f710b92b3f87257e7d03d6677"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_MSG_UPDATEFILTER_REQ" ref="ga8c77cf6f710b92b3f87257e7d03d6677" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_MSG_UPDATEFILTER_REQ&nbsp;&nbsp;&nbsp;5</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Send a compiled filter into the remote device </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00284">284</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gac094e3209a4b7fc379b034d3dc37acb0"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_NETBUF_SIZE" ref="gac094e3209a4b7fc379b034d3dc37acb0" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_NETBUF_SIZE&nbsp;&nbsp;&nbsp;64000</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Buffer used by socket functions to send-receive packets. In case you plan to have messages larger than this value, you have to increase it. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00099">99</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga3f87b7e89ed61dc2c9956234399058e8"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_STARTCAPREQ_FLAG_DGRAM" ref="ga3f87b7e89ed61dc2c9956234399058e8" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_STARTCAPREQ_FLAG_DGRAM&nbsp;&nbsp;&nbsp;2</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Use a datagram (i.e. UDP) connection for the data stream (default: use TCP) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00302">302</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gac22aa6103fe1490ab908a26d5c4a7c8a"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_STARTCAPREQ_FLAG_INBOUND" ref="gac22aa6103fe1490ab908a26d5c4a7c8a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_STARTCAPREQ_FLAG_INBOUND&nbsp;&nbsp;&nbsp;8</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Capture only inbound packets (take care: the flag has no effects with promiscuous enabled) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00304">304</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga2b29630fe7963da543db242459c74832"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_STARTCAPREQ_FLAG_OUTBOUND" ref="ga2b29630fe7963da543db242459c74832" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_STARTCAPREQ_FLAG_OUTBOUND&nbsp;&nbsp;&nbsp;16</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Capture only outbound packets (take care: the flag has no effects with promiscuous enabled) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00305">305</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga3d0b7b3a3d97ebdd265ab800a004ae8c"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_STARTCAPREQ_FLAG_PROMISC" ref="ga3d0b7b3a3d97ebdd265ab800a004ae8c" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_STARTCAPREQ_FLAG_PROMISC&nbsp;&nbsp;&nbsp;1</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Enables promiscuous mode (default: disabled) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00301">301</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga0c5a71a9b6d5be2662c5a8872cf3032c"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_STARTCAPREQ_FLAG_SERVEROPEN" ref="ga0c5a71a9b6d5be2662c5a8872cf3032c" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_STARTCAPREQ_FLAG_SERVEROPEN&nbsp;&nbsp;&nbsp;4</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>The server has to open the data connection toward the client </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00303">303</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga5bac38979d12b0a8755d70981fb387af"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_SUSPEND_WRONGAUTH" ref="ga5bac38979d12b0a8755d70981fb387af" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_SUSPEND_WRONGAUTH&nbsp;&nbsp;&nbsp;1</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>If the authentication is wrong, stops 1 sec before accepting a new auth message </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00093">93</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gad5f148b0c94a8c6162ee79c33463ac95"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_TIMEOUT_INIT" ref="gad5f148b0c94a8c6162ee79c33463ac95" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_TIMEOUT_INIT&nbsp;&nbsp;&nbsp;90</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Initial timeout for RPCAP connections (default: 90 sec) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00090">90</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga1d5a54e68e71ec6de7e3d9d1b5dc35bc"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_TIMEOUT_RUNTIME" ref="ga1d5a54e68e71ec6de7e3d9d1b5dc35bc" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_TIMEOUT_RUNTIME&nbsp;&nbsp;&nbsp;180</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Run-time timeout for RPCAP connections (default: 3 min) </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00091">91</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gac93bee6a0991d4334eacd6e451b54240"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_UPDATEFILTER_BPF" ref="gac93bee6a0991d4334eacd6e451b54240" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_UPDATEFILTER_BPF&nbsp;&nbsp;&nbsp;1</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>This code tells us that the filter is encoded with the BPF/NPF syntax </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00307">307</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gadd52d73598f0b006a4634f6f40c85e3e"></a><!-- doxytag: member="pcap&#45;remote.h::RPCAP_VERSION" ref="gadd52d73598f0b006a4634f6f40c85e3e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define RPCAP_VERSION&nbsp;&nbsp;&nbsp;0</td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Present version of the RPCAP protocol (0 = Experimental). </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00089">89</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<hr/><h2>Typedef Documentation</h2>
<a class="anchor" id="ga56f1a81c92849566ae864511088eb7e8"></a><!-- doxytag: member="pcap&#45;remote.h::int32" ref="ga56f1a81c92849566ae864511088eb7e8" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef int <a class="el" href="group__remote__pri__struct.html#ga56f1a81c92849566ae864511088eb7e8">int32</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides a 32-bits integer. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00118">118</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga05f6b0ae8f6a6e135b0e290c25fe0e4e"></a><!-- doxytag: member="pcap&#45;remote.h::uint16" ref="ga05f6b0ae8f6a6e135b0e290c25fe0e4e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef unsigned short <a class="el" href="group__remote__pri__struct.html#ga05f6b0ae8f6a6e135b0e290c25fe0e4e">uint16</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides a 16-bits unsigned integer. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00116">116</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="ga1134b580f8da4de94ca6b1de4d37975e"></a><!-- doxytag: member="pcap&#45;remote.h::uint32" ref="ga1134b580f8da4de94ca6b1de4d37975e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef unsigned int <a class="el" href="group__remote__pri__struct.html#ga1134b580f8da4de94ca6b1de4d37975e">uint32</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides a 32-bits unsigned integer. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00117">117</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
<a class="anchor" id="gadde6aaee8457bee49c2a92621fe22b79"></a><!-- doxytag: member="pcap&#45;remote.h::uint8" ref="gadde6aaee8457bee49c2a92621fe22b79" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef unsigned char <a class="el" href="group__remote__pri__struct.html#gadde6aaee8457bee49c2a92621fe22b79">uint8</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides an 8-bits unsigned integer. </p>

<p>Definition at line <a class="el" href="pcap-remote_8h_source.html#l00115">115</a> of file <a class="el" href="pcap-remote_8h_source.html">pcap-remote.h</a>.</p>

</div>
</div>
</div>

<hr>
<p align="right"><img border="0" src="winpcap_small.gif" align="absbottom" width="91" height="27">
documentation. Copyright (c) 2002-2005 Politecnico di Torino. Copyright (c) 2005-2009
CACE Technologies. All rights reserved.</p>