kvde_switch (userland command) added (mgmt is still missing)
[vde.git] / vde / slirpvde / slirp_config.h
blobbb9f944dffef41bed737747e3932ebc025511591
1 /*
2 * User definable configuration options
3 */
5 /* Undefine if you don't want talk emulation */
6 #undef EMULATE_TALK
8 /* Define if you want the connection to be probed */
9 /* XXX Not working yet, so ignore this for now */
10 #undef PROBE_CONN
12 /* Define to 1 if you want KEEPALIVE timers */
13 #define DO_KEEPALIVE 0
15 /* Define to MAX interfaces you expect to use at once */
16 /* MAX_INTERFACES determines the max. TOTAL number of interfaces (SLIP and PPP) */
17 /* MAX_PPP_INTERFACES determines max. number of PPP interfaces */
18 #define MAX_INTERFACES 1
19 #define MAX_PPP_INTERFACES 1
21 /* Define if you want slirp's socket in /tmp */
22 /* XXXXXX Do this in ./configure */
23 #undef USE_TMPSOCKET
25 /* Define if you want slirp to use cfsetXspeed() on the terminal */
26 #undef DO_CFSETSPEED
28 /* Define this if you want slirp to write to the tty as fast as it can */
29 /* This should only be set if you are using load-balancing, slirp does a */
30 /* pretty good job on single modems already, and seting this will make */
31 /* interactive sessions less responsive */
32 /* XXXXX Talk about having fast modem as unit 0 */
33 #undef FULL_BOLT
36 * Define if you want slirp to use less CPU
37 * You will notice a small lag in interactive sessions, but it's not that bad
38 * Things like Netscape/ftp/etc. are completely unaffected
39 * This is mainly for sysadmins who have many slirp users
41 #undef USE_LOWCPU
43 /* Define this if your compiler doesn't like prototypes */
44 #ifndef __STDC__
45 #define NO_PROTOTYPES
46 #endif