summaryrefslogtreecommitdiff
path: root/source4/libcli/ldap/ldap_client.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-11-10 00:28:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:45:59 -0500
commit65baaafc34b2befac50541c5aef86e5d906d2797 (patch)
tree14196ae03ef9ba1be8e9d35ec3f067ead5e5b2e6 /source4/libcli/ldap/ldap_client.h
parent5d5b462bbb672c1897d24717af42cdd49ee49519 (diff)
downloadsamba-65baaafc34b2befac50541c5aef86e5d906d2797.tar.gz
samba-65baaafc34b2befac50541c5aef86e5d906d2797.tar.bz2
samba-65baaafc34b2befac50541c5aef86e5d906d2797.zip
r11620: switch the ldap client code over to using the generic packet code
(This used to be commit 1d29ad2a27d89454e5e3c4a3cf05cc5edde0208c)
Diffstat (limited to 'source4/libcli/ldap/ldap_client.h')
-rw-r--r--source4/libcli/ldap/ldap_client.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/source4/libcli/ldap/ldap_client.h b/source4/libcli/ldap/ldap_client.h
index 38e043da1f..ee458dc5b0 100644
--- a/source4/libcli/ldap/ldap_client.h
+++ b/source4/libcli/ldap/ldap_client.h
@@ -61,9 +61,6 @@ struct ldap_connection {
/* next message id to assign */
unsigned next_messageid;
- /* outgoing send queue */
- struct ldap_request *send_queue;
-
/* Outstanding LDAP requests that have not yet been replied to */
struct ldap_request *pending;
@@ -73,9 +70,6 @@ struct ldap_connection {
/* set if we are wrapping requests */
BOOL enable_wrap;
- /* partially received packet */
- DATA_BLOB partial;
-
/* the default timeout for messages */
int timeout;
@@ -86,4 +80,6 @@ struct ldap_connection {
struct event_context *event_ctx;
struct fd_event *fde;
} event;
+
+ struct packet_context *packet;
};