minor optimizations
[util-vserver.git] / util-vserver / vserver-start / interface.h
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifndef H_UTIL_VSERVER_VSERVER_START_INTERFACE_H
20 #define H_UTIL_VSERVER_VSERVER_START_INTERFACE_H
21
22 #include <lib_internal/util-cast.h>
23
24 #include <lib/vserver.h>
25 #include <lib_internal/pathinfo.h>
26 #include <stdbool.h>
27
28 struct Interface {
29     union {
30         struct {
31             uint32_t            ip;
32             uint32_t            mask;
33             uint32_t            extip;
34             uint32_t            bcast;
35         }                       ipv4;
36     }                           addr;
37         
38     char const *                name;
39     char const *                scope;
40     char const *                dev;
41     char const *                mac;
42     bool                        nodev;
43     bool                        direct;
44     bool                        up;
45 };
46
47 void            activateInterfaces();
48 void            deactivateInterfaces();
49
50 static void     Iface_init(struct Interface *);
51 static void     Iface_free(struct Interface *);
52 bool            Iface_read(struct Interface *, PathInfo *cfgdir,
53                            struct Interface const *dflt);
54 bool            Iface_add(struct Interface const *);
55 bool            Iface_del(struct Interface const *);
56
57 #include "interface-init.hc"
58 #include "interface-free.hc"
59
60 #endif  //  H_UTIL_VSERVER_VSERVER_START_INTERFACE_H