diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-10-10 19:57:55 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2005-10-10 19:57:55 +0000 |
commit | 03dd1d3907df687807b7a30f58c04729a1c272de (patch) | |
tree | 9f50dd2d7f95b76829ff7b1dc7a8d7a2e8bb1a8f /source/libcli/smb_composite/smb_composite.h | |
parent | 10bde832ee03608e7cc3f52b2a349ed5ef8843c7 (diff) | |
download | samba-03dd1d3907df687807b7a30f58c04729a1c272de.tar.gz samba-03dd1d3907df687807b7a30f58c04729a1c272de.tar.xz samba-03dd1d3907df687807b7a30f58c04729a1c272de.zip |
r10878: Reply to some comments by tridge and metze:
* rename the composite helper functions from comp_* to composite_*
* Move the lsa initialization to wb_connect_lsa.c
* Equip smb_composite_connect with a fallback_to_anonymous
The latter two simplify wb_init_domain.c quite a bit.
Volker
Diffstat (limited to 'source/libcli/smb_composite/smb_composite.h')
-rw-r--r-- | source/libcli/smb_composite/smb_composite.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/libcli/smb_composite/smb_composite.h b/source/libcli/smb_composite/smb_composite.h index ec3a7af22df..7ab01274408 100644 --- a/source/libcli/smb_composite/smb_composite.h +++ b/source/libcli/smb_composite/smb_composite.h @@ -90,10 +90,12 @@ struct smb_composite_connect { const char *service; const char *service_type; struct cli_credentials *credentials; + BOOL fallback_to_anonymous; const char *workgroup; } in; struct { struct smbcli_tree *tree; + BOOL anonymous_fallback_done; } out; }; |