diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-11 04:56:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:40 -0500 |
commit | 70071c21143c96039b6ebfe5b9b3f4463905ca49 (patch) | |
tree | b1367d237b424e8dc2baeee8866e03025a75706a /prog_guide.txt | |
parent | 4e891277864e71e5a099a7797f6e16f2b28b3a70 (diff) | |
download | samba-70071c21143c96039b6ebfe5b9b3f4463905ca49.tar.gz |
r4672: added the "spnego" flag to the binding string docs
(This used to be commit 360aa583e7359a2e653d385a8d3c7977fd9614d1)
Diffstat (limited to 'prog_guide.txt')
-rw-r--r-- | prog_guide.txt | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/prog_guide.txt b/prog_guide.txt index 05d1bc61403..9a80d757f09 100644 --- a/prog_guide.txt +++ b/prog_guide.txt @@ -539,30 +539,32 @@ will be auto-determined. other recognised flags are: - sign : enable ntlmssp signing - seal : enable ntlmssp sealing - connect : enable rpc connect level auth (auth, but no sign or seal) - validate: enable the NDR validator - print: enable debugging of the packets - bigendian: use bigendian RPC - padcheck: check reply data for non-zero pad bytes + sign : enable ntlmssp signing + seal : enable ntlmssp sealing + spnego : use SPNEGO instead of NTLMSSP authentication + connect : enable rpc connect level auth (auth, but no sign or seal) + validate : enable the NDR validator + print : enable debugging of the packets + bigendian : use bigendian RPC + padcheck : check reply data for non-zero pad bytes -For example, these all connect to the samr pipe: +Here are some examples: ncacn_np:myserver ncacn_np:myserver[samr] ncacn_np:myserver[\pipe\samr] ncacn_np:myserver[/pipe/samr] ncacn_np:myserver[samr,sign,print] + ncacn_np:myserver[sign,spnego] ncacn_np:myserver[\pipe\samr,sign,seal,bigendian] ncacn_np:myserver[/pipe/samr,seal,validate] ncacn_np: ncacn_np:[/pipe/samr] - ncacn_ip_tcp:myserver ncacn_ip_tcp:myserver[1024] - ncacn_ip_tcp:myserver[1024,sign,seal] + ncacn_ip_tcp:myserver[sign,seal] + ncacn_ip_tcp:myserver[spnego,seal] IDEA: Maybe extend UNC names like this? @@ -764,6 +766,8 @@ BUGS: trans2 and other calls handle servers that don't have the setattre call in torture add max file coponent length test and max path len test + check for alloc failure in all core reply.c and trans2.c code where + allocation size depends on client parameter case-insenstive idea: all filenames on disk lowercase @@ -779,3 +783,4 @@ solve del *.* idea: setup a timer destroy cache after 30 sec destroy if a 2nd dir scan happens on same dir + |