/** * FreeRDP: A Remote Desktop Protocol Implementation * Server Channels * * Copyright 2011-2012 Vic Lee * 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 __WTSVC_H #define __WTSVC_H #include #include #include #include #include #include #include #ifdef WITH_DEBUG_DVC #define DEBUG_DVC(fmt, ...) DEBUG_CLASS(DVC, fmt, ## __VA_ARGS__) #else #define DEBUG_DVC(fmt, ...) DEBUG_NULL(fmt, ## __VA_ARGS__) #endif enum { RDP_PEER_CHANNEL_TYPE_SVC = 0, RDP_PEER_CHANNEL_TYPE_DVC = 1 }; enum { DRDYNVC_STATE_NONE = 0, DRDYNVC_STATE_INITIALIZED = 1, DRDYNVC_STATE_READY = 2 }; enum { DVC_OPEN_STATE_NONE = 0, DVC_OPEN_STATE_SUCCEEDED = 1, DVC_OPEN_STATE_FAILED = 2, DVC_OPEN_STATE_CLOSED = 3 }; typedef struct rdp_peer_channel rdpPeerChannel; struct rdp_peer_channel { WTSVirtualChannelManager* vcm; freerdp_peer* client; UINT32 channel_id; UINT16 channel_type; UINT16 index; STREAM* receive_data; struct wait_obj* receive_event; LIST* receive_queue; HANDLE mutex; BYTE dvc_open_state; UINT32 dvc_total_length; }; struct WTSVirtualChannelManager { freerdp_peer* client; struct wait_obj* send_event; LIST* send_queue; HANDLE mutex; rdpPeerChannel* drdynvc_channel; BYTE drdynvc_state; UINT32 dvc_channel_id_seq; LIST* dvc_channel_list; }; #endif /* __WTSVC_H */