summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2019-03-13 16:44:53 +0100
committerAndrew Bartlett <abartlet@samba.org>2019-04-30 23:18:28 +0000
commitd02f790724109f04b5ecd711e060e0b468d3042f (patch)
treea989cafc1a4131e27416c37f1b064036ffd0336d /source3/librpc
parent17e22e020fcb84fb9ddda350915369dc9ea28ef1 (diff)
downloadsamba-d02f790724109f04b5ecd711e060e0b468d3042f.tar.gz
s3:librpc: Rename the data blobs for keys in smbXsrv.idl
The original names will be used with a new structure to cache mac and cipher handles for gnutls later. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/idl/smbXsrv.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/idl/smbXsrv.idl b/source3/librpc/idl/smbXsrv.idl
index 935c4084252..a261dc72981 100644
--- a/source3/librpc/idl/smbXsrv.idl
+++ b/source3/librpc/idl/smbXsrv.idl
@@ -203,7 +203,7 @@ interface smbXsrv
[charset(UTF8),string] char local_address[];
[charset(UTF8),string] char remote_address[];
[charset(UTF8),string] char remote_name[];
- [noprint] DATA_BLOB signing_key;
+ [noprint] DATA_BLOB signing_key_blob;
uint32 auth_session_info_seqnum;
[ignore] smbXsrv_connection *connection;
uint16 encryption_cipher;
@@ -225,9 +225,9 @@ interface smbXsrv
uint16 connection_dialect;
smbXsrv_signing_flags signing_flags;
smbXsrv_encrpytion_flags encryption_flags;
- [noprint] DATA_BLOB signing_key;
- [noprint] DATA_BLOB encryption_key;
- [noprint] DATA_BLOB decryption_key;
+ [noprint] DATA_BLOB signing_key_blob;
+ [noprint] DATA_BLOB encryption_key_blob;
+ [noprint] DATA_BLOB decryption_key_blob;
[noprint] DATA_BLOB application_key;
[range(1, 1024)] uint32 num_channels;
smbXsrv_channel_global0 channels[num_channels];