VirtualBox

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

Last change on this file since 35951 was 30016, checked in by vboxsync, 14 years ago

NAT: clean up.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: misc.h 30016 2010-06-03 18:31:14Z vboxsync $ */
2/** @file
3 * NAT - helpers (declarations/defines).
4 */
5
6/*
7 * Copyright (C) 2006-2010 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
31void getouraddr (PNATState);
32void slirp_insque (PNATState, void *, void *);
33void slirp_remque (PNATState, void *);
34void fd_nonblock (int);
35
36/* UVM interface */
37#define UMA_ALIGN_PTR (1 << 0)
38#define UMA_ZONE_REFCNT (1 << 1)
39#define UMA_ZONE_MAXBUCKET (1 << 2)
40#define UMA_ZONE_ZINIT (1 << 3)
41#define UMA_SLAB_KERNEL (1 << 4)
42#define UMA_ZFLAG_FULL (1 << 5)
43
44struct uma_zone;
45typedef struct uma_zone *uma_zone_t;
46typedef void *(*uma_alloc_t)(uma_zone_t, int, u_int8_t *, int);
47typedef void (*uma_free_t)(void *, int, u_int8_t);
48
49typedef int (*ctor_t)(PNATState, void *, int, void *, int);
50typedef void (*dtor_t)(PNATState, void *, int, void *);
51typedef int (*zinit_t)(PNATState, void *, int, int);
52typedef void (*zfini_t)(PNATState, void *, int);
53uma_zone_t uma_zcreate(PNATState, char *, size_t, ctor_t, dtor_t, zinit_t, zfini_t, int, int);
54uma_zone_t uma_zsecond_create(char *, ctor_t, dtor_t, zinit_t, zfini_t, uma_zone_t);
55void uma_zone_set_max(uma_zone_t, int);
56void uma_zone_set_allocf(uma_zone_t, uma_alloc_t);
57void uma_zone_set_freef(uma_zone_t, uma_free_t);
58
59uint32_t *uma_find_refcnt(uma_zone_t, void *);
60void *uma_zalloc(uma_zone_t, int);
61void *uma_zalloc_arg(uma_zone_t, void *, int);
62void uma_zfree(uma_zone_t, void *);
63void uma_zfree_arg(uma_zone_t, void *, void *);
64int uma_zone_exhausted_nolock(uma_zone_t);
65void zone_drain(uma_zone_t);
66
67void slirp_null_arg_free(void *, void *);
68void m_fini(PNATState pData);
69
70#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