0
|
1 |
/*-
|
|
2 |
* ----------------------------------------------------------------------------
|
|
3 |
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
4 |
* <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
|
|
5 |
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
6 |
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
7 |
* ----------------------------------------------------------------------------
|
|
8 |
*
|
|
9 |
* $FreeBSD: src/sys/sys/jail.h,v 1.26 2005/06/09 18:49:19 pjd Exp $
|
|
10 |
*
|
|
11 |
*/
|
|
12 |
|
|
13 |
struct jail {
|
|
14 |
u_int32_t version;
|
|
15 |
char *path;
|
|
16 |
char *hostname;
|
|
17 |
u_int32_t ip_number;
|
|
18 |
};
|
|
19 |
|
|
20 |
int jail(struct jail *);
|
|
21 |
int jail_attach(int);
|
|
22 |
|