VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/misc.h@ 57358

Last change on this file since 57358 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.4 KB
Line 
1/* $Id: misc.h 56292 2015-06-09 14:20:46Z vboxsync $ */
2/** @file
3 * NAT - helpers (declarations/defines).
4 */
5
6/*
7 * Copyright (C) 2006-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/*
19 * This code is based on:
20 *
21 * Copyright (c) 1995 Danny Gasparovski.
22 *
23 * Please read the file COPYRIGHT for the
24 * terms and conditions of the copyright.
25 */
26
27#ifndef _MISC_H_
28#define _MISC_H_
29
30#ifdef VBOX_NAT_TST_QUEUE
31typedef void *PNATState;
32#endif
33
34void slirp_insque (PNATState, void *, void *);
35void slirp_remque (PNATState, void *);
36# ifndef VBOX_NAT_TST_QUEUE
37void getouraddr (PNATState);
38void fd_nonblock (int);
39
40/* UVM interface */
41#define UMA_ALIGN_PTR (1 << 0)
42#define UMA_ZONE_REFCNT (1 << 1)
43#define UMA_ZONE_MAXBUCKET (1 << 2)
44#define UMA_ZONE_ZINIT (1 << 3)
45#define UMA_SLAB_KERNEL (1 << 4)
46#define UMA_ZFLAG_FULL (1 << 5)
47
48struct uma_zone;
49typedef struct uma_zone *uma_zone_t;
50
51typedef void *(*uma_alloc_t)(uma_zone_t, int, u_int8_t *, int);
52typedef void (*uma_free_t)(void *, int, u_int8_t);
53
54typedef int (*ctor_t)(PNATState, void *, int, void *, int);
55typedef void (*dtor_t)(PNATState, void *, int, void *);
56typedef int (*zinit_t)(PNATState, void *, int, int);
57typedef void (*zfini_t)(PNATState, void *, int);
58uma_zone_t uma_zcreate(PNATState, char *, size_t, ctor_t, dtor_t, zinit_t, zfini_t, int, int);
59uma_zone_t uma_zsecond_create(char *, ctor_t, dtor_t, zinit_t, zfini_t, uma_zone_t);
60void uma_zone_set_max(uma_zone_t, int);
61void uma_zone_set_allocf(uma_zone_t, uma_alloc_t);
62void uma_zone_set_freef(uma_zone_t, uma_free_t);
63
64uint32_t *uma_find_refcnt(uma_zone_t, void *);
65void *uma_zalloc(uma_zone_t, int);
66void *uma_zalloc_arg(uma_zone_t, void *, int);
67void uma_zfree(uma_zone_t, void *);
68void uma_zfree_arg(uma_zone_t, void *, void *);
69int uma_zone_exhausted_nolock(uma_zone_t);
70void zone_drain(uma_zone_t);
71
72void slirp_null_arg_free(void *, void *);
73void m_fini(PNATState pData);
74# else /* VBOX_NAT_TST_QUEUE */
75# define insque slirp_insque
76# define remque slirp_remque
77# endif
78#endif
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