From c0f1c179b9ea1394b8273cbd12a84276585c3636 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 16 Jun 2011 14:20:21 +0200 Subject: s3-vfs: Replace client_id in smbta. Signed-off-by: Andrew Bartlett --- source3/modules/vfs_smb_traffic_analyzer.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_smb_traffic_analyzer.c b/source3/modules/vfs_smb_traffic_analyzer.c index ddce7e7dc5..2ce8beb04f 100644 --- a/source3/modules/vfs_smb_traffic_analyzer.c +++ b/source3/modules/vfs_smb_traffic_analyzer.c @@ -28,6 +28,7 @@ #include "secrets.h" #include "../librpc/gen_ndr/ndr_netlogon.h" #include "auth.h" +#include "../lib/tsocket/tsocket.h" /* abstraction for the send_over_network function */ enum sock_type {INTERNET_SOCKET = 0, UNIX_DOMAIN_SOCKET}; @@ -302,6 +303,7 @@ static char *smb_traffic_analyzer_create_string( TALLOC_CTX *ctx, char *timestr = NULL; char *sidstr = NULL; char *usersid = NULL; + char *raddr = NULL; char *buf = NULL; char *vfs_operation_str = NULL; const char *service_name = lp_const_servicename(handle->conn->params->service); @@ -340,7 +342,13 @@ static char *smb_traffic_analyzer_create_string( TALLOC_CTX *ctx, common_data_count_str, usersid, handle); - + + raddr = tsocket_address_inet_addr_string(handle->conn->sconn->remote_address, + ctx); + if (raddr == NULL) { + return NULL; + } + /* time stamp */ timestr = talloc_asprintf( common_data_count_str, \ "%04d-%02d-%02d %02d:%02d:%02d.%03d", \ @@ -369,8 +377,8 @@ static char *smb_traffic_analyzer_create_string( TALLOC_CTX *ctx, handle->conn->session_info->info3->base.domain.string, (unsigned int) strlen(timestr), timestr, - (unsigned int) strlen(handle->conn->sconn->client_id.addr), - handle->conn->sconn->client_id.addr); + (unsigned int) strlen(raddr), + raddr); talloc_free(common_data_count_str); -- cgit