diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/pidl/rfr | |
parent | Initial commit. (diff) | |
download | wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip |
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/pidl/rfr')
-rw-r--r-- | epan/dissectors/pidl/rfr/rfr.cnf | 1 | ||||
-rw-r--r-- | epan/dissectors/pidl/rfr/rfr.idl | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/epan/dissectors/pidl/rfr/rfr.cnf b/epan/dissectors/pidl/rfr/rfr.cnf new file mode 100644 index 00000000..07dbd738 --- /dev/null +++ b/epan/dissectors/pidl/rfr/rfr.cnf @@ -0,0 +1 @@ +# Conformance file for RFR diff --git a/epan/dissectors/pidl/rfr/rfr.idl b/epan/dissectors/pidl/rfr/rfr.idl new file mode 100644 index 00000000..da2ec2bd --- /dev/null +++ b/epan/dissectors/pidl/rfr/rfr.idl @@ -0,0 +1,53 @@ +/* + RFR Implementation + + OpenChange Project + + Copyright (C) Julien Kerihuel 2008. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + +#include "idl_types.h" + +[ + uuid("1544f5e0-613c-11d1-93df-00c04fd7bd09"), + endpoint("ncacn_np:[\\pipe\\lsass]","ncacn_np:[\\pipe\\protected_storage]","ncacn_ip_tcp:[]"), + pointer_default(unique), + version(1.0), + helpstring("Exchange 2003 Directory Request For Response") +] interface rfr +{ + +#include "mapicodes_enum.h" + + /*****************/ + /* Function 0x00 */ + MAPISTATUS RfrGetNewDSA( + [in] uint32 ulFlags, + [in,string,charset(DOS)] uint8 *pUserDN, + [in,out,unique,string,charset(DOS)] uint8 **ppszUnused, + [in,out,unique,string,charset(DOS)] uint8 **ppszServer + ); + + /*****************/ + /* Function 0x01 */ + MAPISTATUS RfrGetFQDNFromLegacyDN( + [in] uint32 ulFlags, + [in,range(10,1024)] uint32 cbMailboxServerDN, + [in,string,charset(DOS),size_is(cbMailboxServerDN)] uint8 *szMailboxServerDN, + [out,ref,string,charset(DOS)] uint8 **ppszServerFQDN + ); +} |