VirtualBox

source: vbox/trunk/include/VBox/vmm/pdmnetshaper.h@ 74429

Last change on this file since 74429 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/** @file
2 * PDM - Pluggable Device Manager, Network Shaper.
3 */
4
5/*
6 * Copyright (C) 2011-2017 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_vmm_pdmnetshaper_h
27#define ___VBox_vmm_pdmnetshaper_h
28
29#include <VBox/types.h>
30#include <VBox/err.h>
31#include <VBox/vmm/pdmnetifs.h>
32#include <iprt/assert.h>
33#include <iprt/sg.h>
34
35
36/** @defgroup grp_pdm_net_shaper The PDM Network Shaper API
37 * @ingroup grp_pdm
38 * @{
39 */
40
41
42#define PDM_NETSHAPER_MIN_BUCKET_SIZE UINT32_C(65536) /**< bytes */
43#define PDM_NETSHAPER_MAX_LATENCY UINT32_C(100) /**< milliseconds */
44
45RT_C_DECLS_BEGIN
46
47typedef struct PDMNSFILTER
48{
49 /** Pointer to the next group in the list (ring-3). */
50 R3PTRTYPE(struct PDMNSFILTER *) pNextR3;
51 /** Pointer to the bandwidth group (ring-3). */
52 R3PTRTYPE(struct PDMNSBWGROUP *) pBwGroupR3;
53 /** Pointer to the bandwidth group (ring-0). */
54 R0PTRTYPE(struct PDMNSBWGROUP *) pBwGroupR0;
55 /** Set when the filter fails to obtain bandwidth. */
56 bool fChoked;
57 /** Aligment padding. */
58 bool afPadding[HC_ARCH_BITS == 32 ? 3 : 7];
59 /** The driver this filter is aggregated into (ring-3). */
60 R3PTRTYPE(PPDMINETWORKDOWN) pIDrvNetR3;
61} PDMNSFILTER;
62
63/** Pointer to a PDM filter handle. */
64typedef struct PDMNSFILTER *PPDMNSFILTER;
65/** Pointer to a network shaper. */
66typedef struct PDMNETSHAPER *PPDMNETSHAPER;
67
68
69VMMDECL(bool) PDMNsAllocateBandwidth(PPDMNSFILTER pFilter, size_t cbTransfer);
70VMMR3_INT_DECL(int) PDMR3NsAttach(PUVM pUVM, PPDMDRVINS pDrvIns, const char *pcszBwGroup, PPDMNSFILTER pFilter);
71VMMR3_INT_DECL(int) PDMR3NsDetach(PUVM pUVM, PPDMDRVINS pDrvIns, PPDMNSFILTER pFilter);
72VMMR3DECL(int) PDMR3NsBwGroupSetLimit(PUVM pUVM, const char *pszBwGroup, uint64_t cbPerSecMax);
73
74/** @} */
75
76RT_C_DECLS_END
77
78#endif
79
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