VirtualBox

source: vbox/trunk/src/VBox/Devices/USB/VUSBSniffer.h@ 58788

Last change on this file since 58788 was 56292, checked in by vboxsync, 9 years ago

Devices: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1/* $Id: VUSBSniffer.h 56292 2015-06-09 14:20:46Z vboxsync $ */
2/** @file
3 * Virtual USB - Sniffer facility.
4 */
5
6/*
7 * Copyright (C) 2014-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___VUSBSniffer_h
19#define ___VUSBSniffer_h
20
21#include <VBox/cdefs.h>
22#include <VBox/types.h>
23#include <VBox/vusb.h>
24
25RT_C_DECLS_BEGIN
26
27/** Opauqe VUSB sniffer handle. */
28typedef struct VUSBSNIFFERINT *VUSBSNIFFER;
29/** Pointer to a VUSB sniffer handle. */
30typedef VUSBSNIFFER *PVUSBSNIFFER;
31
32/** NIL sniffer instance handle. */
33#define VUSBSNIFFER_NIL ((VUSBSNIFFER)0)
34
35/**
36 * VUSB Sniffer event types.
37 */
38typedef enum VUSBSNIFFEREVENT
39{
40 /** Invalid event. */
41 VUSBSNIFFEREVENT_INVALID = 0,
42 /** URB submit event. */
43 VUSBSNIFFEREVENT_SUBMIT,
44 /** URB complete event. */
45 VUSBSNIFFEREVENT_COMPLETE,
46 /** URB submit failed event. */
47 VUSBSNIFFEREVENT_ERROR_SUBMIT,
48 /** URB completed with error event. */
49 VUSBSNIFFEREVENT_ERROR_COMPLETE,
50 /** 32bit hack. */
51 VUSBSNIFFEREVENT_32BIT_HACK = 0x7fffffff
52} VUSBSNIFFEREVENT;
53
54/**
55 * Create a new VUSB sniffer instance dumping to the given capture file.
56 *
57 * @returns VBox status code.
58 * @param phSniffer Where to store the handle to the sniffer instance on success.
59 * @param fFlags Flags, reserved, must be 0.
60 * @param pszCaptureFilename The filename to use for capturing the sniffed data.
61 * @param pszDesc Optional description for the dump.
62 */
63DECLHIDDEN(int) VUSBSnifferCreate(PVUSBSNIFFER phSniffer, uint32_t fFlags,
64 const char *pszCaptureFilename, const char *pszDesc);
65
66/**
67 * Destroys the given VUSB sniffer instance.
68 *
69 * @returns nothing.
70 * @param hSniffer The sniffer instance to destroy.
71 */
72DECLHIDDEN(void) VUSBSnifferDestroy(VUSBSNIFFER hSniffer);
73
74/**
75 * Records an VUSB event.
76 *
77 * @returns VBox status code.
78 * @param hSniffer The sniffer instance.
79 * @param pUrb The URB triggering the event.
80 * @param enmEvent The type of event to record.
81 */
82DECLHIDDEN(int) VUSBSnifferRecordEvent(VUSBSNIFFER hSniffer, PVUSBURB pUrb, VUSBSNIFFEREVENT enmEvent);
83
84
85RT_C_DECLS_END
86#endif
87
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette