/** * FreeRDP: A Remote Desktop Protocol Implementation * RPC Secure Context Binding * * Copyright 2012 Marc-Andre Moreau * * 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. */ #ifndef FREERDP_LIB_CORE_GATEWAY_RPC_BIND_H #define FREERDP_LIB_CORE_GATEWAY_RPC_BIND_H #include "rpc.h" #include #include FREERDP_LOCAL extern const p_uuid_t TSGU_UUID; #define TSGU_SYNTAX_IF_VERSION 0x00030001 FREERDP_LOCAL extern const p_uuid_t NDR_UUID; #define NDR_SYNTAX_IF_VERSION 0x00000002 FREERDP_LOCAL extern const p_uuid_t BTFN_UUID; #define BTFN_SYNTAX_IF_VERSION 0x00000001 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); FREERDP_LOCAL BOOL rpc_recv_bind_ack_pdu(rdpRpc* rpc, wStream* s); FREERDP_LOCAL int rpc_send_rpc_auth_3_pdu(rdpRpc* rpc); FREERDP_LOCAL enum RPC_BIND_STATE rpc_bind_state(rdpRpc* rpc); FREERDP_LOCAL BYTE rpc_auth_pkg_to_security_provider(const char* name); #endif /* FREERDP_LIB_CORE_GATEWAY_RPC_BIND_H */