diff options
author | Tim Potter <tpot@samba.org> | 2003-10-28 10:17:05 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-10-28 10:17:05 +0000 |
commit | 931dc553909c4ee345f7c16ca79f56f84ae39ff6 (patch) | |
tree | 01c937f93e8568f304a5e18a39b167096babdee7 /source4/include | |
parent | f3d20c5c862e4cb4c12e48f0c614943017e7e512 (diff) | |
download | samba-931dc553909c4ee345f7c16ca79f56f84ae39ff6.tar.gz samba-931dc553909c4ee345f7c16ca79f56f84ae39ff6.tar.bz2 samba-931dc553909c4ee345f7c16ca79f56f84ae39ff6.zip |
Implement raw SMBtrans by backending the SMBtrans2 send code. Receive is
the same for trans and trans2.
(This used to be commit 7d21af3fdf6cf5144a41021425179ca2bba553b3)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb_interfaces.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 9ac9f418ea..5f96679900 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -1600,7 +1600,7 @@ struct smb_copy { }; -/* struct for transact2 call */ +/* struct for transact/transact2 call */ struct smb_trans2 { struct { uint16 max_param; @@ -1610,6 +1610,7 @@ struct smb_trans2 { uint32 timeout; uint8 setup_count; uint16 *setup; + char *trans_name; /* SMBtrans only */ DATA_BLOB params; DATA_BLOB data; } in; |