From 9df1b408c1b2432728ecc3d114854535f168b47a Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Sun, 7 Nov 2010 10:05:56 +0100 Subject: 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. --- source4/echo_server/wscript_build | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 source4/echo_server/wscript_build (limited to 'source4/echo_server/wscript_build') 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 + ) -- cgit