]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/address_conf.h
Minor changes in formating and to address_conf.c
[bacula/bacula] / bacula / src / lib / address_conf.h
1 /*
2  *
3  *   Written by Meno Abels, June MMIIII
4  *
5  *   Version $Id$
6  */
7
8 /*
9    Copyright (C) 2004 Kern Sibbald and John Walker
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28
29 class IPADDR {
30  public:
31    typedef enum { R_SINGLE, R_SINGLE_PORT, R_SINGLE_ADDR, R_MULTIPLE,
32                   R_DEFAULT, R_EMPTY
33    } i_type;
34    IPADDR(int af);
35    IPADDR(const IPADDR & src);
36  private:
37    IPADDR() {  /* block this construction */ } 
38    i_type type;
39    union {
40       struct sockaddr dontuse;
41       struct sockaddr_in dontuse4;
42 #ifdef HAVE_IPV6
43       struct sockaddr_in6 dontuse6;
44 #endif
45    } buf;
46    struct sockaddr *saddr;
47    struct sockaddr_in *saddr4;
48 #ifdef HAVE_IPV6
49    struct sockaddr_in6 *saddr6;
50 #endif
51  public:
52    void set_type(i_type o);
53    i_type get_type() const;
54    unsigned short get_port() const;
55    void set_port(unsigned short port);
56    int get_family() const;
57    struct sockaddr *get_sockaddr();
58    int get_sockaddr_len();
59    void copy_addr(IPADDR * src);
60    void set_addr_any();
61    void set_addr4(struct in_addr *ip4);
62 #ifdef HAVE_IPV6
63    void set_addr6(struct in6_addr *ip6);
64 #endif
65    const char *get_address(char *outputbuf, int outlen);
66
67    const char *build_address_str(char *buf, int blen);
68
69    /* private */
70    dlink link;
71 };
72
73 extern void store_addresses(LEX * lc, RES_ITEM * item, int index, int pass);
74 extern void free_addresses(dlist * addrs);
75 extern void store_addresses_address(LEX * lc, RES_ITEM * item, int index, int pass);
76 extern void store_addresses_port(LEX * lc, RES_ITEM * item, int index, int pass);
77 extern int add_address(dlist ** out, IPADDR::i_type type, unsigned short defaultport,
78                        int family, const char *hostname_str,
79                        const char *port_str, char **errstr);
80
81 extern void init_default_addresses(dlist ** addr, int port);
82
83 extern const char *get_first_address(dlist * addrs, char *outputbuf, int outlen);
84 extern int get_first_port(dlist * addrs);
85
86 extern const char *build_addresses_str(dlist *addrs, char *buf, int blen);