From 69d24d869bf97978b31a51fe8e8d08cac4874d67 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 21 Dec 1999 04:54:30 +0000 Subject: first cut at using the tdb code for the connections structure, the SWAT status page and smbstatus. It made the code _much_ simpler, I wish we'd done a database module a long time ago! (This used to be commit 4951755413c11d4c5b9af4699a6e622056d52433) --- source3/script/mkproto.awk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/script/mkproto.awk') diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 923624c3a2..fd0cbcd2f8 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -98,6 +98,10 @@ END { gotstart = 1; } + if( $0 ~ /^TDB_CONTEXT|^TDB_DATA/ ) { + gotstart = 1; + } + if( $0 ~ /^long|^char|^uint|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^enum remote_arch_types|^FILE|^SMB_OFF_T|^size_t|^ssize_t|^SMB_BIG_UINT/ ) { gotstart = 1; } -- cgit