summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2002-01-02 05:38:09 +0000
committerMartin Pool <mbp@samba.org>2002-01-02 05:38:09 +0000
commit37ae84f782e1de6fcea92acb2189683cdf8e7e92 (patch)
tree2ae8aed64027c9c38180311b60fcbc951db00b18 /source
parent95abb2473bb4f93df163a0e8af79d5292e1389b3 (diff)
downloadsamba-37ae84f782e1de6fcea92acb2189683cdf8e7e92.tar.gz
samba-37ae84f782e1de6fcea92acb2189683cdf8e7e92.tar.xz
samba-37ae84f782e1de6fcea92acb2189683cdf8e7e92.zip
struct cli_state remembers the pipe name that it's talking to, if any,
so that we can print it in later debug messages.
Diffstat (limited to 'source')
-rw-r--r--source/include/client.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/include/client.h b/source/include/client.h
index fde001813d3..a8be1d16e1a 100644
--- a/source/include/client.h
+++ b/source/include/client.h
@@ -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 */