diff options
author | 2020-03-05 21:23:21 +1100 | |
---|---|---|
committer | 2020-03-05 21:23:21 +1100 | |
commit | 5bce46bd7561ae1857c7e17614133f01f984ae78 (patch) | |
tree | 5df802bbf88b78604f359e9691f395fd2fea4bec /3rdparty/winpcap/docs/html/group__remote__source__string.html | |
parent | 72082dc6d70b62ad921d5ac680c628c9ce158271 (diff) |
Removed winpcap and cleaned up network module selection.
(nw) The pcap.h header itself has the problematic original BSD license,
including the obnoxious advertising clause. Using tap/tun networking on
Windows provides a much better experience, so the extra setup is worth
it. This patch also allows you to enable pcap on platforms where it's
disabled by default with USE_PCAP=1 if you really want to use it.
Diffstat (limited to '3rdparty/winpcap/docs/html/group__remote__source__string.html')
-rw-r--r-- | 3rdparty/winpcap/docs/html/group__remote__source__string.html | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/3rdparty/winpcap/docs/html/group__remote__source__string.html b/3rdparty/winpcap/docs/html/group__remote__source__string.html deleted file mode 100644 index eeee55d1bc3..00000000000 --- a/3rdparty/winpcap/docs/html/group__remote__source__string.html +++ /dev/null @@ -1,112 +0,0 @@ -<!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: Strings related to the new source syntax</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 Page</span></a></li> - <li><a href="pages.html"><span>Related Pages</span></a></li> - <li><a href="modules.html"><span>Modules</span></a></li> - <li><a href="annotated.html"><span>Data Structures</span></a></li> - <li><a href="files.html"><span>Files</span></a></li> - </ul> - </div> -</div> -<div class="contents"> -<h1>Strings related to the new source syntax<br/> -<small> -[<a class="el" href="group__remote__struct.html">Exported Structures and Definitions</a>]</small> -</h1><table border="0" cellpadding="0" cellspacing="0"> -<tr><td colspan="2"><h2>Defines</h2></td></tr> -<tr><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__source__string.html#gadb108815eb410ca0ab0b444ff2e56a26">PCAP_SRC_FILE_STRING</a> "file://"</td></tr> -<tr><td class="mdescLeft"> </td><td class="mdescRight">String that will be used to determine the type of source in use (file, remote/local interface). <a href="#gadb108815eb410ca0ab0b444ff2e56a26"></a><br/></td></tr> -<tr><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="group__remote__source__string.html#ga6d7103b8a7e1eca8c325bd8f32c361c3">PCAP_SRC_IF_STRING</a> "rpcap://"</td></tr> -<tr><td class="mdescLeft"> </td><td class="mdescRight">String that will be used to determine the type of source in use (file, remote/local interface). <a href="#ga6d7103b8a7e1eca8c325bd8f32c361c3"></a><br/></td></tr> -</table> -<hr/><a name="_details"></a><h2>Detailed Description</h2> -<p>The formats allowed by the <a class="el" href="group__wpcapfunc.html#ga2b64c7b6490090d1d37088794f1f1791" title="Open a generic source in order to capture / send (WinPcap only) traffic.">pcap_open()</a> are the following:</p> -<ul> -<li><a href="file://path_and_filename">file://path_and_filename</a> [opens a local file]</li> -<li>rpcap://devicename [opens the selected device devices available on the local host, without using the RPCAP protocol]</li> -<li>rpcap://host/devicename [opens the selected device available on a remote host]</li> -<li>rpcap://host:port/devicename [opens the selected device available on a remote host, using a non-standard port for RPCAP]</li> -<li>adaptername [to open a local adapter; kept for compability, but it is strongly discouraged]</li> -<li>(NULL) [to open the first local adapter; kept for compability, but it is strongly discouraged]</li> -</ul> -<p>The formats allowed by the <a class="el" href="group__wpcapfunc.html#ga98f36e62c95c6ad81eaa8b2bbeb8f16e" title="Create a list of network devices that can be opened with pcap_open().">pcap_findalldevs_ex()</a> are the following:</p> -<ul> -<li><a href="file://folder/">file://folder/</a> [lists all the files in the given folder]</li> -<li>rpcap:// [lists all local adapters]</li> -<li>rpcap://host:port/ [lists the devices available on a remote host]</li> -</ul> -<p>Referring to the 'host' and 'port' paramters, they can be either numeric or literal. Since IPv6 is fully supported, these are the allowed formats:</p> -<ul> -<li>host (literal): e.g. host.foo.bar</li> -<li>host (numeric IPv4): e.g. 10.11.12.13</li> -<li>host (numeric IPv4, IPv6 style): e.g. [10.11.12.13]</li> -<li>host (numeric IPv6): e.g. [1:2:3::4]</li> -<li>port: can be either numeric (e.g. '80') or literal (e.g. 'http')</li> -</ul> -<p>Here you find some allowed examples:</p> -<ul> -<li>rpcap://host.foo.bar/devicename [everything literal, no port number]</li> -<li>rpcap://host.foo.bar:1234/devicename [everything literal, with port number]</li> -<li>rpcap://10.11.12.13/devicename [IPv4 numeric, no port number]</li> -<li>rpcap://10.11.12.13:1234/devicename [IPv4 numeric, with port number]</li> -<li>rpcap://[10.11.12.13]:1234/devicename [IPv4 numeric with IPv6 format, with port number]</li> -<li>rpcap://[1:2:3::4]/devicename [IPv6 numeric, no port number]</li> -<li>rpcap://[1:2:3::4]:1234/devicename [IPv6 numeric, with port number]</li> -<li>rpcap://[1:2:3::4]:http/devicename [IPv6 numeric, with literal port number] </li> -</ul> -<hr/><h2>Define Documentation</h2> -<a class="anchor" id="gadb108815eb410ca0ab0b444ff2e56a26"></a><!-- doxytag: member="remote-ext.h::PCAP_SRC_FILE_STRING" ref="gadb108815eb410ca0ab0b444ff2e56a26" args="" --> -<div class="memitem"> -<div class="memproto"> - <table class="memname"> - <tr> - <td class="memname">#define PCAP_SRC_FILE_STRING "file://"</td> - </tr> - </table> -</div> -<div class="memdoc"> - -<p>String that will be used to determine the type of source in use (file, remote/local interface). </p> -<p>This string will be prepended to the interface name in order to create a string that contains all the information required to open the source.</p> -<p>This string indicates that the user wants to open a capture from a local file. </p> - -<p>Definition at line <a class="el" href="remote-ext_8h_source.html#l00164">164</a> of file <a class="el" href="remote-ext_8h_source.html">remote-ext.h</a>.</p> - -</div> -</div> -<a class="anchor" id="ga6d7103b8a7e1eca8c325bd8f32c361c3"></a><!-- doxytag: member="remote-ext.h::PCAP_SRC_IF_STRING" ref="ga6d7103b8a7e1eca8c325bd8f32c361c3" args="" --> -<div class="memitem"> -<div class="memproto"> - <table class="memname"> - <tr> - <td class="memname">#define PCAP_SRC_IF_STRING "rpcap://"</td> - </tr> - </table> -</div> -<div class="memdoc"> - -<p>String that will be used to determine the type of source in use (file, remote/local interface). </p> -<p>This string will be prepended to the interface name in order to create a string that contains all the information required to open the source.</p> -<p>This string indicates that the user wants to open a capture from a network interface. This string does not necessarily involve the use of the RPCAP protocol. If the interface required resides on the local host, the RPCAP protocol is not involved and the local functions are used. </p> - -<p>Definition at line <a class="el" href="remote-ext_8h_source.html#l00177">177</a> of file <a class="el" href="remote-ext_8h_source.html">remote-ext.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> |