diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-14 15:03:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:16 -0500 |
commit | e3f2414cf9e582a4e4deecc662b64a7bb2679a34 (patch) | |
tree | d7f9afc1db09bce58ff895418c97c36e6bb33908 /source4/smbd/service_stream.h | |
parent | eefe30b7d8e17ed744318417954669bacf2b3ac0 (diff) | |
download | samba-e3f2414cf9e582a4e4deecc662b64a7bb2679a34.tar.gz samba-e3f2414cf9e582a4e4deecc662b64a7bb2679a34.tar.xz samba-e3f2414cf9e582a4e4deecc662b64a7bb2679a34.zip |
r14380: Reduce the size of structs.h
(This used to be commit 1a16a6f1dfa66499af43a6b88b3ea69a6a75f1fe)
Diffstat (limited to 'source4/smbd/service_stream.h')
-rw-r--r-- | source4/smbd/service_stream.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/smbd/service_stream.h b/source4/smbd/service_stream.h index 6f1a967237..692e18bea5 100644 --- a/source4/smbd/service_stream.h +++ b/source4/smbd/service_stream.h @@ -21,6 +21,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef __SERVICE_STREAM_H__ +#define __SERVICE_STREAM_H__ + /* modules can use the following to determine if the interface has changed * please increment the version number after each interface change * with a comment and maybe update struct stream_connection_critical_sizes. @@ -58,3 +61,5 @@ struct stream_server_ops { void (*recv_handler)(struct stream_connection *, uint16_t); void (*send_handler)(struct stream_connection *, uint16_t); }; + +#endif /* __SERVICE_STREAM_H__ */ |