Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-05-26 | s4:libcli/smb2: remove old dialect revision constants | Stefan Metzmacher | 1 | -4/+0 | |
metze | |||||
2009-05-26 | s4:libcli/smb2: use new SMB2_DIVELECT_REVISION constants | Stefan Metzmacher | 1 | -2/+5 | |
Also send them in the order a windows client would send them (the lowest first). metze | |||||
2009-05-26 | s4:libcli/smb2: add some more SMB2 constants | Stefan Metzmacher | 1 | -4/+14 | |
metze | |||||
2009-05-20 | s4:libcli/smb2: fix session setup with raw NTLMSSP | Stefan Metzmacher | 1 | -13/+17 | |
metze | |||||
2009-05-20 | s4:libcli/smb2: use raw ntlmssp if the server didn't provide a sec blob | Stefan Metzmacher | 1 | -1/+8 | |
metze | |||||
2009-05-20 | s4:libcli/smb2: fill in transport->negotiate.secblob with the correct data | Stefan Metzmacher | 1 | -0/+2 | |
metze | |||||
2009-05-11 | Move SMB2 constants to a separate file | Volker Lendecke | 2 | -114/+140 | |
2009-05-11 | Fix SMB2_CAP_DFS | Volker Lendecke | 1 | -1/+1 | |
2009-04-01 | s4:smb2: Add lease break support for SMB2.1 | Zach Loafman | 5 | -11/+145 | |
Add the structures and marshalling for the lease break variants of the oplock break / oplock break ack messages. | |||||
2009-03-28 | s4:smb2: Add rudimentary SMB2.1 lease support to libcli | Zach Loafman | 2 | -0/+38 | |
Add the structures, constants, and marshalling for SMB2.1 leases. | |||||
2009-03-18 | s4 libcli: Add back Longhorn beta dialect as a constant | Zach Loafman | 2 | -4/+4 | |
Also tweak how the dialect array and count is initialized. | |||||
2009-03-17 | s4 libcli: Add SMB2.1 dialect to libcli | Zach Loafman | 2 | -2/+5 | |
Negotiate 2.1 if possible, leave negotiate results in transport->negotiate.dialect_revision. | |||||
2009-03-01 | s4: Use same function signature for convert_* as s3. | Jelmer Vernooij | 1 | -9/+9 | |
2009-03-01 | Add allow_badcharcnv argument to all conversion function, for | Jelmer Vernooij | 1 | -2/+2 | |
consistency with Samba 3. | |||||
2009-02-05 | s4:libcli/smb2: fix c++ warning | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2009-02-02 | s4:smb2: s/private/private_data | Stefan Metzmacher | 2 | -3/+3 | |
metze | |||||
2009-02-02 | s4:libcli/smb2: s/class/info_class | Stefan Metzmacher | 1 | -5/+6 | |
metze | |||||
2009-02-02 | s4:libcli/smb2: s/private/private_data | Stefan Metzmacher | 1 | -13/+13 | |
metze | |||||
2008-12-29 | s4:lib/tevent: rename structs | Stefan Metzmacher | 3 | -8/+8 | |
list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze | |||||
2008-11-02 | Remove use of global_loadparm for SMB2 client connections. | Jelmer Vernooij | 1 | -5/+9 | |
2008-11-02 | Fix the build. | Jelmer Vernooij | 1 | -2/+0 | |
2008-11-02 | Add gensec_settings structure. This wraps loadparm_context for now, but | Jelmer Vernooij | 3 | -4/+5 | |
should in the future only contain some settings required for gensec. | |||||
2008-11-01 | Remove another use of global_loadparm. | Jelmer Vernooij | 1 | -4/+7 | |
2008-11-01 | Remove another use of global_loadparm. | Jelmer Vernooij | 1 | -7/+7 | |
2008-11-01 | Move calls to lp_* higher up in the call stack. | Jelmer Vernooij | 1 | -6/+15 | |
2008-11-01 | Move lp_*() calls a bit higher up the calls tack. | Jelmer Vernooij | 1 | -2/+1 | |
2008-10-24 | Remove unused include param/param.h. | Jelmer Vernooij | 1 | -1/+0 | |
2008-10-24 | Remove iconv_convenience argument from convert_string{,talloc}() but | Jelmer Vernooij | 1 | -2/+2 | |
make them wrappers around convert_string{,talloc}_convenience(). | |||||
2008-10-11 | Fix include paths to new location of libutil. | Jelmer Vernooij | 2 | -2/+2 | |
2008-09-29 | s4:libcli/smb2: remove unused header | Stefan Metzmacher | 1 | -1/+0 | |
This hopefully fixes the build with internal popt. metze | |||||
2008-09-24 | we need different error handling for truncated packets in NETPROT and | Andrew Tridgell | 1 | -0/+1 | |
other SMB2 operations. | |||||
2008-09-24 | for use in python we need to use global_loadparm | Andrew Tridgell | 1 | -1/+1 | |
2008-09-24 | - SMB2 uses INVALID_PARAMETER not BUFFER_TOO_SMALL for buffer size | Andrew Tridgell | 1 | -15/+39 | |
errors - added a s32o16 buffer function | |||||
2008-09-24 | - use the current dialect first, for servers that only look at the | Andrew Tridgell | 1 | -3/+10 | |
first dialect - allow override of SMB2 port in client code | |||||
2008-09-24 | be friendlier in smb2_deltree to some of the SMB2 implementations that | Andrew Tridgell | 1 | -1/+1 | |
don't handle SEC_FLAG_MAXIMUM_ALLOWED | |||||
2008-09-24 | Move source4/lib/crypto to lib/crypto. | Jelmer Vernooij | 1 | -1/+1 | |
2008-09-23 | fixed readonly handling in deltree | Andrew Tridgell | 1 | -0/+6 | |
2008-08-14 | libcli/smb2: add SMB2_CREATE_OPTIONS_NOT_SUPPORTED_MASK | Stefan Metzmacher | 1 | -1/+3 | |
SMB2 returns NOT_SUPPORTED to some more NTCREATE_OPTIONS. metze (This used to be commit 3ea08d430370717463ffab44fed9c42db1002d97) | |||||
2008-08-14 | libcli/smb2: use smb2 signing in auto mode if the server supports it | Stefan Metzmacher | 1 | -1/+7 | |
metze (This used to be commit fe74faf13dc64eaa58d757de156aedcb24abed1f) | |||||
2008-08-14 | libcli/smb2: we don't need check the same thing twice... | Stefan Metzmacher | 1 | -6/+0 | |
metze (This used to be commit 1380fb954a7d9d4b543c4650a060fef9f357af7b) | |||||
2008-08-14 | libcli/smb2: async replies with STATUS_PENDING are not signed | Stefan Metzmacher | 1 | -13/+11 | |
metze (This used to be commit 3f6cbece4a199a42ad6583ea4bd4302629399625) | |||||
2008-07-28 | libcli/smb2: the session key for SMB2 signing is truncated to 16 bytes | Stefan Metzmacher | 2 | -7/+6 | |
To make that work (as a client) with aes128 and aes256 krb5 keys we need to use gsskrb5_get_subkey(). metze (This used to be commit 0c6d988f2083067e1ac7b07a492f88cefd3ba906) | |||||
2008-07-28 | libcli/smb2: fix per session signing state | Stefan Metzmacher | 4 | -17/+12 | |
metze (This used to be commit 8bc12dc77a59e792830d96e84a4e8d1b2c651505) | |||||
2008-07-28 | libcli/smb2: sign SMB2 Logoff requests | Stefan Metzmacher | 1 | -0/+2 | |
metze (This used to be commit 35ee165b146b9157b0cff49e1139a0cb37d98926) | |||||
2008-06-07 | make signing per session in the SMB2 client library | Andrew Tridgell | 4 | -10/+11 | |
Thanks to Metze for spotting this (This used to be commit e9fd9b821c04d1cb7b574f539dd8169611e662aa) | |||||
2008-06-06 | added server side SMB2 signing | Andrew Tridgell | 3 | -70/+44 | |
(This used to be commit 8e919dcb0826a5b25d037ee6144af5f7cb21f3ae) | |||||
2008-06-03 | SMB2 signing now works. The spec was wrong (and will be fixed in the | Andrew Tridgell | 1 | -12/+9 | |
next version) (This used to be commit 436cb17b869e2d6cc57936ccc5e81680fb992341) | |||||
2008-05-30 | implemented client side SMB2 signing | Andrew Tridgell | 8 | -38/+283 | |
This doessn't work against Windows yet, and I've submitted a WSPP request for clarification of the docs to try and find out why. Meanwhile this is no worse than what we had, as it only gets used when the server demands signing, and we didn't work then anyway. (This used to be commit b788096add3586d7277efcd3bf5ca7f3a604cb7a) | |||||
2008-05-29 | fixed offset for maximal access response | Andrew Tridgell | 1 | -1/+1 | |
(This used to be commit ddd0bb32510d615c7b943fb4ce4c9c275b98ab89) | |||||
2008-05-28 | updated comment based on MS-SMB2 docs | Andrew Tridgell | 1 | -1/+2 | |
(This used to be commit 5754cc13514a0f5fe4c47ce53521c256c9d96487) |