1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/libcli/named_pipe_auth/wscript_build
Volker Lendecke 05c358759c rpc: Add tstream_u32_read
In npa_tstream.c we have two next_vector functions reading a big
endian uin32_t length and then the blob described by the length. This
factors that next_vector out into a central routine.

Why? I'll add another NPA protocol in the future, and this would add
yet another two copies of that next_vector code

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2019-04-05 00:00:10 +00:00

10 lines
249 B
Python

#!/usr/bin/env python
bld.SAMBA_LIBRARY('npa_tstream',
source='npa_tstream.c tstream_u32_read.c',
private_library=True,
public_deps='NDR_NAMED_PIPE_AUTH tevent LIBTSOCKET'
)