diff options
Diffstat (limited to 'arch/um/drivers/daemon.h')
-rw-r--r-- | arch/um/drivers/daemon.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/um/drivers/daemon.h b/arch/um/drivers/daemon.h new file mode 100644 index 000000000000..7326c42f7ef9 --- /dev/null +++ b/arch/um/drivers/daemon.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2001 Jeff Dike (jdike@karaya.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #include "net_user.h" | ||
7 | |||
8 | #define SWITCH_VERSION 3 | ||
9 | |||
10 | struct daemon_data { | ||
11 | char *sock_type; | ||
12 | char *ctl_sock; | ||
13 | void *ctl_addr; | ||
14 | void *data_addr; | ||
15 | void *local_addr; | ||
16 | int fd; | ||
17 | int control; | ||
18 | void *dev; | ||
19 | }; | ||
20 | |||
21 | extern struct net_user_info daemon_user_info; | ||
22 | |||
23 | extern int daemon_user_write(int fd, void *buf, int len, | ||
24 | struct daemon_data *pri); | ||
25 | |||
26 | /* | ||
27 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
28 | * Emacs will notice this stuff at the end of the file and automatically | ||
29 | * adjust the settings for this buffer only. This must remain at the end | ||
30 | * of the file. | ||
31 | * --------------------------------------------------------------------------- | ||
32 | * Local variables: | ||
33 | * c-file-style: "linux" | ||
34 | * End: | ||
35 | */ | ||