struct cli_state remembers the pipe name that it's talking to, if any,
authorMartin Pool <mbp@samba.org>
Wed, 2 Jan 2002 05:38:09 +0000 (05:38 +0000)
committerMartin Pool <mbp@samba.org>
Wed, 2 Jan 2002 05:38:09 +0000 (05:38 +0000)
so that we can print it in later debug messages.

source/include/client.h

index fde001813d3801d10eb153443a7f67193374a936..a8be1d16e1a5ad3682c4fe9668c16e0b7bba56ad 100644 (file)
@@ -142,6 +142,9 @@ struct cli_state {
        /* was this structure allocated by cli_initialise? If so, then
            free in cli_shutdown() */
        BOOL allocated;
+
+       /* Name of the pipe we're talking to, if any */
+       fstring pipe_name;
 };
 
 #endif /* _CLIENT_H */