Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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) | |||||
2008-05-28 | ensure we don't change the incoming blobs in a SMB2 create | Andrew Tridgell | 1 | -1/+16 | |
(This used to be commit a6cc89fffe8c149b540f2125cea57f31331d5460) | |||||
2008-05-28 | expose a function for pushing all SMB2 create blobs | Andrew Tridgell | 1 | -17/+36 | |
(This used to be commit f5985a0490e4105a9b0208f6b7b19e635db324f9) | |||||
2008-05-28 | added support for all of the known SMB2 create tags in our client | Andrew Tridgell | 1 | -7/+179 | |
library (This used to be commit 597b38e97b01d2137e6ac96ca07cd56fadb2c09e) | |||||
2008-05-27 | cope better with read only files in smb2_deltree | Andrew Tridgell | 1 | -0/+10 | |
(This used to be commit 88a2c7b2f44f160836e477e460812df557204f51) | |||||
2008-05-27 | don't alter the in blobs in a SMB2 create, otherwise two calls in a | Andrew Tridgell | 1 | -5/+6 | |
row will fail (This used to be commit 3b811a52fe9a8356337ad149d01a3498c09d900a) | |||||
2008-05-23 | fix make test for EAs again | Andrew Tridgell | 1 | -2/+2 | |
- go back to 4 byte alignment until I work out the rules that Vista wants more exactly - add the zero sized EA handling for SMB2 more generically (This used to be commit 326b69bc8064cbea357864cecd6bd27b50c57184) | |||||
2008-05-22 | pass in the required alignment to the EA construction routines | Andrew Tridgell | 1 | -2/+2 | |
(This used to be commit af31030e0b78b6b220740529901ec8d2d9f5a3fe) | |||||
2008-05-21 | fixed SMB2 flush call, and added flush to gentest_smb2 | Andrew Tridgell | 1 | -2/+4 | |
(This used to be commit c52fe1fe1c77636d87355d3c4baa66e052fe9008) | |||||
2008-05-21 | fixed SMB2 locking | Andrew Tridgell | 1 | -8/+16 | |
- SMB2 locking is different in several ways from SMB locking. To fix it properly we will need a new generic mapping structure for locking, but for now do a best effort mapping - added locking to gentest_smb2 (This used to be commit ea6d9cf602302adafe0f9d5f5f90a9b26d1ead6f) | |||||
2008-05-20 | added smb2_util_setatr | Andrew Tridgell | 1 | -0/+22 | |
(This used to be commit d4f41db964ce82c8889017d0f932d60100b3cd32) | |||||
2008-05-20 | added some SMB2 utility functions | Andrew Tridgell | 2 | -1/+179 | |
(This used to be commit 6a3b1cd6698faa460c6258bb41b4936e363f4387) |