diff options
author | guy <guy> | 2006-10-13 17:46:45 +0000 |
---|---|---|
committer | guy <guy> | 2006-10-13 17:46:45 +0000 |
commit | 455aff8ba9495985ee622ce38d69dd5795d6e2de (patch) | |
tree | 818ac9fc7f32d22bca40e1bc0be4d473e1fcf483 /pcap-bt-linux.c | |
parent | 50ce2663e80dab3e650826fdc391b80a20bda1e7 (diff) |
Move the Linux Bluetooth and USB declarations to a header file.
Clean up some comments.
Protect all references to the USB stuff from the common Linux code with
PCAP_SUPPORT_USB, just as references to the Bluetooth code are protected
with PCAP_SUPPORT_BT.
Diffstat (limited to 'pcap-bt-linux.c')
-rw-r--r-- | pcap-bt-linux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pcap-bt-linux.c b/pcap-bt-linux.c index d1c07fd1..f9d23079 100644 --- a/pcap-bt-linux.c +++ b/pcap-bt-linux.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * USB sniffig API implementation for linux platform + * Bluetooth sniffing API implementation for Linux platform * By Paolo Abeni <paolo.abeni@email.com> * */ @@ -38,6 +38,7 @@ #endif #include "pcap-int.h" +#include "pcap-bt-linux.h" #ifdef NEED_STRERROR_H #include "strerror.h" |