mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
9df1b408c1
This is a simple UDP-based echo server. It is mainly intended as an example on how to do server service tasks in s4.
10 lines
258 B
Python
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
|
|
)
|