diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-10 01:41:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:00 -0500 |
commit | f59c61d41386000cc030511963c42a16dc8a816c (patch) | |
tree | 12a4df50baab3b97ec44bc8a19c5b3c3a586ae66 /source4/ldap_server/ldap_server.h | |
parent | b8f4d22ab5f5b93a6cf36d82d70843bfd106968b (diff) | |
download | samba-f59c61d41386000cc030511963c42a16dc8a816c.tar.gz samba-f59c61d41386000cc030511963c42a16dc8a816c.tar.xz samba-f59c61d41386000cc030511963c42a16dc8a816c.zip |
r11622: convert the ldap server to the generic packet code
(This used to be commit 6ef4ba0c81002c9960dc5fe4fbfd0622957d492a)
Diffstat (limited to 'source4/ldap_server/ldap_server.h')
-rw-r--r-- | source4/ldap_server/ldap_server.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/source4/ldap_server/ldap_server.h b/source4/ldap_server/ldap_server.h index 8eb02a97db..be555146d8 100644 --- a/source4/ldap_server/ldap_server.h +++ b/source4/ldap_server/ldap_server.h @@ -31,19 +31,13 @@ struct ldapsrv_connection { struct ldapsrv_partition *default_partition; struct ldapsrv_partition *partitions; - /* partially received request */ - DATA_BLOB partial; - /* are we using gensec wrapping? */ BOOL enable_wrap; - /* reply send queue */ - struct data_blob_list_item *send_queue; - - BOOL processing; - /* connection should be terminated if non-null */ const char *terminate; + + struct packet_context *packet; }; struct ldapsrv_call { |