diff options
author | Kai Blin <kai@samba.org> | 2010-11-07 10:05:56 +0100 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2010-12-09 23:01:57 +0100 |
commit | 9df1b408c1b2432728ecc3d114854535f168b47a (patch) | |
tree | b94ecd9fcce36af955ee5ca75d95a3148fad9345 /source4/echo_server/wscript_build | |
parent | 5fcbb1676009de9e384a8f76e0c4ab1b43ce3746 (diff) | |
download | samba-9df1b408c1b2432728ecc3d114854535f168b47a.tar.gz samba-9df1b408c1b2432728ecc3d114854535f168b47a.tar.bz2 samba-9df1b408c1b2432728ecc3d114854535f168b47a.zip |
s4: Implement UDP echo server example
This is a simple UDP-based echo server. It is mainly intended as an
example on how to do server service tasks in s4.
Diffstat (limited to 'source4/echo_server/wscript_build')
-rw-r--r-- | source4/echo_server/wscript_build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/echo_server/wscript_build b/source4/echo_server/wscript_build new file mode 100644 index 0000000000..660baf4d18 --- /dev/null +++ b/source4/echo_server/wscript_build @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +bld.SAMBA_MODULE('ECHO', + source='echo_server.c', + subsystem='service', + init_function='server_service_echo_init', + deps='samba-hostconfig LIBTSOCKET LIBSAMBA_TSOCKET', + local_include=False + ) |