]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/address_conf.h
27df19ed9d9ff77e83f694672635670256e5be03
[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 : public SMARTALLOC {
30 // class IPADDR {
31  public:
32    typedef enum { R_SINGLE, R_SINGLE_PORT, R_SINGLE_ADDR, R_MULTIPLE,
33                   R_DEFAULT, R_EMPTY
34    } i_type;
35    IPADDR(int af);
36    IPADDR(const IPADDR & src);
37  private:
38    IPADDR() {  /* block this construction */ } 
39    i_type type;
40    union {
41       struct sockaddr dontuse;
42       struct sockaddr_in dontuse4;
43 #ifdef HAVE_IPV6
44       struct sockaddr_in6 dontuse6;
45 #endif
46    } buf;
47    struct sockaddr *saddr;
48    struct sockaddr_in *saddr4;
49 #ifdef HAVE_IPV6
50    struct sockaddr_in6 *saddr6;
51 #endif
52  public:
53    void set_type(i_type o);
54    i_type get_type() const;
55    unsigned short get_port_net_order() const;
56    unsigned short get_port_host_order() const
57    {
58       return ntohs(get_port_net_order());
59    }
60    void set_port_net(unsigned short port);
61    int get_family() const;
62    struct sockaddr *get_sockaddr();
63    int get_sockaddr_len();
64    void copy_addr(IPADDR * src);
65    void set_addr_any();
66    void set_addr4(struct in_addr *ip4);
67 #ifdef HAVE_IPV6
68    void set_addr6(struct in6_addr *ip6);
69 #endif
70    const char *get_address(char *outputbuf, int outlen);
71
72    const char *build_address_str(char *buf, int blen);
73
74    /* private */
75    dlink link;
76 };
77
78 extern void store_addresses(LEX * lc, RES_ITEM * item, int index, int pass);
79 extern void free_addresses(dlist * addrs);
80 extern void store_addresses_address(LEX * lc, RES_ITEM * item, int index, int pass);
81 extern void store_addresses_port(LEX * lc, RES_ITEM * item, int index, int pass);
82 extern void init_default_addresses(dlist ** addr, int port);
83
84 extern const char *get_first_address(dlist * addrs, char *outputbuf, int outlen);
85 extern int get_first_port_net_order(dlist * addrs);
86 extern int get_first_port_host_order(dlist * addrs);
87
88 extern const char *build_addresses_str(dlist *addrs, char *buf, int blen);
89
90 extern int sockaddr_get_port_net_order(const struct sockaddr *sa);
91 extern int sockaddr_to_ascii(const struct sockaddr *sa, char *buf, int len);