2012-11-28 09:32:12 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* RPC Secure Context Binding
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#ifndef FREERDP_LIB_CORE_GATEWAY_RPC_BIND_H
|
|
|
|
#define FREERDP_LIB_CORE_GATEWAY_RPC_BIND_H
|
2012-11-28 09:32:12 +04:00
|
|
|
|
|
|
|
#include "rpc.h"
|
|
|
|
|
|
|
|
#include <winpr/wtypes.h>
|
2016-08-10 10:12:55 +03:00
|
|
|
#include <freerdp/api.h>
|
2012-11-28 09:32:12 +04:00
|
|
|
|
2018-10-24 16:46:18 +03:00
|
|
|
FREERDP_LOCAL extern const p_uuid_t TSGU_UUID;
|
2019-11-06 17:24:51 +03:00
|
|
|
#define TSGU_SYNTAX_IF_VERSION 0x00030001
|
2015-02-01 23:58:32 +03:00
|
|
|
|
2018-10-24 16:46:18 +03:00
|
|
|
FREERDP_LOCAL extern const p_uuid_t NDR_UUID;
|
2019-11-06 17:24:51 +03:00
|
|
|
#define NDR_SYNTAX_IF_VERSION 0x00000002
|
2015-02-01 23:58:32 +03:00
|
|
|
|
2018-10-24 16:46:18 +03:00
|
|
|
FREERDP_LOCAL extern const p_uuid_t BTFN_UUID;
|
2019-11-06 17:24:51 +03:00
|
|
|
#define BTFN_SYNTAX_IF_VERSION 0x00000001
|
2015-02-01 23:58:32 +03:00
|
|
|
|
2022-09-06 06:16:21 +03:00
|
|
|
enum RPC_BIND_STATE
|
|
|
|
{
|
|
|
|
RPC_BIND_STATE_INCOMPLETE,
|
|
|
|
RPC_BIND_STATE_LAST_LEG,
|
|
|
|
RPC_BIND_STATE_COMPLETE
|
|
|
|
};
|
|
|
|
|
|
|
|
FREERDP_LOCAL int rpc_send_bind_pdu(rdpRpc* rpc, BOOL initial);
|
2021-10-15 12:45:08 +03:00
|
|
|
FREERDP_LOCAL BOOL rpc_recv_bind_ack_pdu(rdpRpc* rpc, wStream* s);
|
2016-08-10 10:12:55 +03:00
|
|
|
FREERDP_LOCAL int rpc_send_rpc_auth_3_pdu(rdpRpc* rpc);
|
2022-09-06 06:16:21 +03:00
|
|
|
FREERDP_LOCAL enum RPC_BIND_STATE rpc_bind_state(rdpRpc* rpc);
|
|
|
|
FREERDP_LOCAL BYTE rpc_auth_pkg_to_security_provider(const char* name);
|
2012-11-28 09:32:12 +04:00
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_LIB_CORE_GATEWAY_RPC_BIND_H */
|