diff options
author | Alberto Gonzalez Iniesta <agi@inittab.org> | 2016-12-27 18:25:47 +0100 |
---|---|---|
committer | Alberto Gonzalez Iniesta <agi@inittab.org> | 2016-12-27 18:25:47 +0100 |
commit | 79f3537f69e125f19f59c36aa090120a63186a54 (patch) | |
tree | 2089a3b7dac990841dbc2e4d9b2f535b82dbb0af /src/openvpn/clinat.h | |
parent | f2137fedb30cb87448eb03b2f288920df6187571 (diff) | |
parent | 3a2bbdb05ca6a6996e424c9fb225cb0d53804125 (diff) |
Merge tag 'upstream/2.4.0'
Upstream version 2.4.0
Diffstat (limited to 'src/openvpn/clinat.h')
-rw-r--r-- | src/openvpn/clinat.h | 47 |
1 files changed, 25 insertions, 22 deletions
diff --git a/src/openvpn/clinat.h b/src/openvpn/clinat.h index a5779e1..cdaf2a8 100644 --- a/src/openvpn/clinat.h +++ b/src/openvpn/clinat.h @@ -5,7 +5,7 @@ * packet encryption, packet authentication, and * packet compression. * - * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net> + * Copyright (C) 2002-2017 OpenVPN Technologies, Inc. <sales@openvpn.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 @@ -33,33 +33,36 @@ #define CN_INCOMING 1 struct client_nat_entry { -# define CN_SNAT 0 -# define CN_DNAT 1 - int type; - in_addr_t network; - in_addr_t netmask; - in_addr_t foreign_network; +#define CN_SNAT 0 +#define CN_DNAT 1 + int type; + in_addr_t network; + in_addr_t netmask; + in_addr_t foreign_network; }; struct client_nat_option_list { - int n; - struct client_nat_entry entries[MAX_CLIENT_NAT]; + int n; + struct client_nat_entry entries[MAX_CLIENT_NAT]; }; -struct client_nat_option_list *new_client_nat_list (struct gc_arena *gc); -struct client_nat_option_list *clone_client_nat_option_list (const struct client_nat_option_list *src, struct gc_arena *gc); -void copy_client_nat_option_list (struct client_nat_option_list *dest, const struct client_nat_option_list *src); +struct client_nat_option_list *new_client_nat_list(struct gc_arena *gc); + +struct client_nat_option_list *clone_client_nat_option_list(const struct client_nat_option_list *src, struct gc_arena *gc); + +void copy_client_nat_option_list(struct client_nat_option_list *dest, const struct client_nat_option_list *src); + void print_client_nat_list(const struct client_nat_option_list *list, int msglevel); -void add_client_nat_to_option_list (struct client_nat_option_list *dest, - const char *type, - const char *network, - const char *netmask, - const char *foreign_network, - int msglevel); +void add_client_nat_to_option_list(struct client_nat_option_list *dest, + const char *type, + const char *network, + const char *netmask, + const char *foreign_network, + int msglevel); -void client_nat_transform (const struct client_nat_option_list *list, - struct buffer *ipbuf, - const int direction); +void client_nat_transform(const struct client_nat_option_list *list, + struct buffer *ipbuf, + const int direction); -#endif +#endif /* if !defined(CLINAT_H) */ |