diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-12-12 11:11:55 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-12-12 14:35:42 +0100 |
commit | 8b2b7d1c87b475b61ef5259cee0ae77afe47a667 (patch) | |
tree | b69e4278b3ddc008de19c06d290e6b247f406239 /source3/include | |
parent | 8581f0b429e225406ab09e83be20e732c1424fca (diff) | |
download | samba-8b2b7d1c87b475b61ef5259cee0ae77afe47a667.tar.gz samba-8b2b7d1c87b475b61ef5259cee0ae77afe47a667.tar.bz2 samba-8b2b7d1c87b475b61ef5259cee0ae77afe47a667.zip |
s3:smbd: remember the smbd_server_connection on pending_message_list
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index d3a27e9f73..2dad790f1b 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -532,6 +532,7 @@ struct interface { struct pending_message_list { struct pending_message_list *next, *prev; struct timeval request_time; /* When was this first issued? */ + struct smbd_server_connection *sconn; struct timed_event *te; struct smb_perfcount_data pcd; uint32_t seqnum; |