]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Fixed management interface bug where >FATAL notifications were
authorJames Yonan <james@openvpn.net>
Fri, 2 Sep 2011 23:49:45 +0000 (23:49 +0000)
committerDavid Sommerseth <dazo@users.sourceforge.net>
Mon, 5 Sep 2011 10:06:03 +0000 (12:06 +0200)
not being output properly because the management interface
socket was being closed before the >FATAL notification could
be transmitted.

Version 2.1.14

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@7587 e7ae566f-a301-0410-adde-c780ea21d3b5

manage.c

index c6632cdb634efec8298451886a851bd166004e0a..ce6fae7f5ef5f99d04ce33c45eb01b831eb9f7c0 100644 (file)
--- a/manage.c
+++ b/manage.c
@@ -283,7 +283,10 @@ virtual_output_callback_func (void *arg, const unsigned int flags, const char *s
 {
   struct management *man = (struct management *) arg;
   static int recursive_level = 0; /* GLOBAL */
-  bool did_push = false;
+
+# define AF_DID_PUSH  (1<<0)
+# define AF_DID_RESET (1<<1)
+  unsigned int action_flags = 0;
 
   if (!recursive_level) /* don't allow recursion */
     {
@@ -317,7 +320,7 @@ virtual_output_callback_func (void *arg, const unsigned int flags, const char *s
          if (out)
            {
              man_output_list_push_str (man, out);
-             did_push = true;
+             action_flags |= AF_DID_PUSH;
            }
          if (flags & M_FATAL)
            {
@@ -325,8 +328,7 @@ virtual_output_callback_func (void *arg, const unsigned int flags, const char *s
              if (out)
                {
                  man_output_list_push_str (man, out);
-                 did_push = true;
-                 man_reset_client_socket (man, true);
+                 action_flags |= (AF_DID_PUSH|AF_DID_RESET);
                }
            }
        }
@@ -335,8 +337,10 @@ virtual_output_callback_func (void *arg, const unsigned int flags, const char *s
       gc_free (&gc);
     }
 
-  if (did_push)
+  if (action_flags & AF_DID_PUSH)
     man_output_list_push_finalize (man);
+  if (action_flags & AF_DID_RESET)
+    man_reset_client_socket (man, true);
 }
 
 /*