From b2b8282b8cc1774ac9cbef9a31ac23705ca45ac2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 19 Oct 2004 07:08:35 +0000 Subject: r3057: - moved the idtree.c code into lib/ - converted the tid handling to use a idtree instead of bitmaps (This used to be commit 4220914179d10132057216650b65ed7f7679717e) --- source4/smb_server/smb_server.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/smb_server/smb_server.h') diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index c40633eb06..6b0994687c 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -215,11 +215,11 @@ struct smbsrv_connection { /* the context associated with open tree connects on a smb socket */ struct { + /* list of open tree connects */ struct smbsrv_tcon *tcons; - /* number of open connections */ - struct bitmap *bmap; - int num_open; + /* an id tree used to allocate tids */ + void *idtree_tid; } tree; /* the context associated with open files on an smb socket */ -- cgit