1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/source4/echo_server/wscript_build
Kai Blin 9df1b408c1 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.
2010-12-09 23:01:57 +01:00

10 lines
258 B
Python

#!/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
)