From 3f968be9d55986666c13f3ef4f54e8e1796b1539 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 18 Nov 2005 12:38:39 +0000 Subject: r11782: - make the TID 32bit in the smbsrv_tcon structure, as SMB2 uses them - add a idtree_limit to the tcons substructure of smbsrv_connection this controls what the highest TID is we give away to the client it's UINT16_MAX (0xFFFF) for the SMB protocol metze (This used to be commit f3bf5a2c0947e33d4167fa4fa290968204a826e8) --- source4/smb_server/management.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/smb_server/management.c') diff --git a/source4/smb_server/management.c b/source4/smb_server/management.c index 23680be112..9f22ee94e8 100644 --- a/source4/smb_server/management.c +++ b/source4/smb_server/management.c @@ -82,7 +82,7 @@ static NTSTATUS smbsrv_tcon_information(struct irpc_message *msg, struct smbsrv_tcon_info *info = &r->out.info.tcons.tcons[i]; info->tid = tcon->tid; info->share_name = lp_servicename(tcon->service); - info->connect_time = timeval_to_nttime(&tcon->connect_time); + info->connect_time = timeval_to_nttime(&tcon->statistics.connect_time); info->client_ip = socket_get_peer_addr(smb_conn->connection->socket, r); i++; } -- cgit