diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-09 08:13:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:45:56 -0500 |
commit | 1c07c25322802eef7b57dda3975baca6c9114c83 (patch) | |
tree | 702ec96e983e546d1bbbcf553076f7deee83e0c0 /source4/lib | |
parent | 8752e38c05779b6ff72bb0bf49940ef6afe55184 (diff) | |
download | samba-1c07c25322802eef7b57dda3975baca6c9114c83.tar.gz samba-1c07c25322802eef7b57dda3975baca6c9114c83.tar.bz2 samba-1c07c25322802eef7b57dda3975baca6c9114c83.zip |
r11596: switched the libcli/raw/ code over to using the lib/stream/ generic
packet parsing code. This simplifies the logic in the raw client
library a fair bit
(This used to be commit f8d43f1f67876360e1295d85a3c3702d1d60ed7b)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/basic.mk | 1 | ||||
-rw-r--r-- | source4/lib/tls/tls.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/basic.mk b/source4/lib/basic.mk index 383892eb9c..a531145060 100644 --- a/source4/lib/basic.mk +++ b/source4/lib/basic.mk @@ -15,6 +15,7 @@ include cmdline/config.mk include socket_wrapper/config.mk include appweb/config.mk include replace/config.mk +include stream/config.mk ############################## # Start SUBSYSTEM LIBNETIF diff --git a/source4/lib/tls/tls.h b/source4/lib/tls/tls.h index a046b91637..df67bad0e4 100644 --- a/source4/lib/tls/tls.h +++ b/source4/lib/tls/tls.h @@ -20,6 +20,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef _TLS_H_ +#define _TLS_H_ + /* call tls_initialise() once per task to startup the tls subsystem */ @@ -72,3 +75,4 @@ BOOL tls_support(struct tls_params *parms); */ NTSTATUS tls_socket_pending(struct tls_context *tls, size_t *npending); +#endif |