diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-01-04 11:59:11 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2004-01-04 11:59:11 +0000 |
commit | 612a97f84535c2d2b397f7a1b3941f7f6f602b27 (patch) | |
tree | e8158166910bd9be81912eb18bdd1f9821b59c88 /source3/nsswitch/winbindd_nss.h | |
parent | 60639680195015739909ea7a2be032bdbab4f76c (diff) | |
download | samba-612a97f84535c2d2b397f7a1b3941f7f6f602b27.tar.gz samba-612a97f84535c2d2b397f7a1b3941f7f6f602b27.tar.bz2 samba-612a97f84535c2d2b397f7a1b3941f7f6f602b27.zip |
Commit the translation of the realm to the netbios domain name in the kerberos
session setup. After talking to jht and abartlet I made this unconditional, no
additional parameter.
Jerry: This is a change in behaviour, but I think it is necessary.
Volker
(This used to be commit d32f47fedcff3fdf46f42926d1cd84433e7ab487)
Diffstat (limited to 'source3/nsswitch/winbindd_nss.h')
-rw-r--r-- | source3/nsswitch/winbindd_nss.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd_nss.h b/source3/nsswitch/winbindd_nss.h index 41fecd2816..00d49e7d3e 100644 --- a/source3/nsswitch/winbindd_nss.h +++ b/source3/nsswitch/winbindd_nss.h @@ -92,6 +92,9 @@ enum winbindd_cmd { WINBINDD_INFO, /* Various bit of info. Currently just tidbits */ WINBINDD_DOMAIN_NAME, /* The domain this winbind server is a member of (lp_workgroup()) */ + WINBINDD_DOMAIN_INFO, /* Most of what we know from + struct winbindd_domain */ + WINBINDD_SHOW_SEQUENCE, /* display sequence numbers of domains */ /* WINS commands */ @@ -260,6 +263,14 @@ struct winbindd_response { char first_8_lm_hash[8]; } auth; uint32 rid; /* create user or group */ + struct { + fstring name; + fstring alt_name; + fstring sid; + BOOL native_mode; + BOOL primary; + uint32 sequence_number; + } domain_info; } data; /* Variable length return data */ |