diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-07-22 13:43:02 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-22 17:06:08 +0200 |
commit | 48de32936389612240203d3d12016d8730aeb64c (patch) | |
tree | ec57cace4db0bbd3656b7000d8ca7b34fd1ab6a8 /source3/include | |
parent | cc4b2a6dc31cd2e1609d18da27ea8f3caadeaf28 (diff) | |
download | samba-48de32936389612240203d3d12016d8730aeb64c.tar.gz samba-48de32936389612240203d3d12016d8730aeb64c.tar.bz2 samba-48de32936389612240203d3d12016d8730aeb64c.zip |
s3:libsmb: move cli_state->{src_ss,dest_ss} to cli_state->conn.{local_ss,remote_ss}
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 4043774e22..86c5f22ce5 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -74,8 +74,6 @@ struct cli_state { char *share; char *dev; - struct sockaddr_storage src_ss; - struct sockaddr_storage dest_ss; DATA_BLOB secblob; /* cryptkey or negTokenInit */ uint32 sesskey; @@ -125,6 +123,8 @@ struct cli_state { struct { int fd; + struct sockaddr_storage local_ss; + struct sockaddr_storage remote_ss; struct tevent_queue *outgoing; struct tevent_req **pending; } conn; |