diff options
author | Alberto Gonzalez Iniesta <agi@inittab.org> | 2016-11-21 09:37:33 +0100 |
---|---|---|
committer | Alberto Gonzalez Iniesta <agi@inittab.org> | 2016-11-21 09:37:33 +0100 |
commit | 93b77cacdbb7e6f310c4e20f85c3a24ed5ba18ba (patch) | |
tree | 55a7688c9969ef4d01625caa58c7f679098c76eb /src/openvpn/push.h | |
parent | daa9ef0efeb5e10a1b43820fbab3a4ff5fbd22f1 (diff) | |
parent | 20c8675ba46bda97330a4117c459a59a9f1c465e (diff) |
Merge tag 'upstream/2.4_beta1'
Upstream version 2.4~beta1
Diffstat (limited to 'src/openvpn/push.h')
-rw-r--r-- | src/openvpn/push.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/openvpn/push.h b/src/openvpn/push.h index 8c3f157..d6cb4b1 100644 --- a/src/openvpn/push.h +++ b/src/openvpn/push.h @@ -37,8 +37,7 @@ #define PUSH_MSG_CONTINUATION 5 #define PUSH_MSG_ALREADY_REPLIED 6 -void incoming_push_message (struct context *c, - const struct buffer *buffer); +int process_incoming_push_request (struct context *c); int process_incoming_push_msg (struct context *c, const struct buffer *buffer, @@ -54,14 +53,15 @@ void server_pushed_signal (struct context *c, const struct buffer *buffer, const #if P2MP_SERVER +void incoming_push_message (struct context *c, const struct buffer *buffer); + void clone_push_list (struct options *o); void push_option (struct options *o, const char *opt, int msglevel); void push_options (struct options *o, char **p, int msglevel, struct gc_arena *gc); void push_reset (struct options *o); - -bool send_push_reply (struct context *c); +void push_remove_option (struct options *o, const char *p); void remove_iroutes_from_push_route_list (struct options *o); |