2013-12-29 04:53:12 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you 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
|
2011-03-28 03:56:14 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-28 03:56:14 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* 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.
|
2013-12-29 04:53:12 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-01 05:50:00 +00:00
|
|
|
#ifndef GUAC_RDP_CLIENT_H
|
|
|
|
#define GUAC_RDP_CLIENT_H
|
2011-03-28 03:56:14 +00:00
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <guacamole/client.h>
|
2012-03-20 22:33:08 +00:00
|
|
|
|
2013-08-20 18:32:47 +00:00
|
|
|
/**
|
|
|
|
* The maximum duration of a frame in milliseconds.
|
|
|
|
*/
|
2014-05-12 06:29:39 +00:00
|
|
|
#define GUAC_RDP_FRAME_DURATION 60
|
2013-08-21 04:13:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The amount of time to allow per message read within a frame, in
|
|
|
|
* milliseconds. If the server is silent for at least this amount of time, the
|
|
|
|
* frame will be considered finished.
|
|
|
|
*/
|
2016-03-09 02:12:43 +00:00
|
|
|
#define GUAC_RDP_FRAME_TIMEOUT 0
|
2012-10-02 21:09:57 +00:00
|
|
|
|
2016-03-08 05:12:53 +00:00
|
|
|
/**
|
|
|
|
* The amount of time to wait for a new message from the RDP server when
|
|
|
|
* beginning a new frame. This value must be kept reasonably small such that
|
|
|
|
* a slow RDP server will not prevent external events from being handled (such
|
|
|
|
* as the stop signal from guac_client_stop()), but large enough that the
|
|
|
|
* message handling loop does not eat up CPU spinning.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_FRAME_START_TIMEOUT 250000
|
|
|
|
|
2014-03-25 21:25:34 +00:00
|
|
|
/**
|
|
|
|
* The native resolution of most RDP connections. As Windows and other systems
|
|
|
|
* rely heavily on forced 96 DPI, we must assume 96 DPI.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_NATIVE_RESOLUTION 96
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The resolution of an RDP connection that would be considered high, but is
|
|
|
|
* tolerable in the case that the client display would be unreasonably small
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_HIGH_RESOLUTION 120
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The smallest area, in pixels^2, that would be considered reasonable large
|
|
|
|
* screen DPI needs to be adjusted.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_REASONABLE_AREA (800*600)
|
|
|
|
|
2014-04-02 01:41:55 +00:00
|
|
|
/**
|
|
|
|
* The maximum number of bytes to allow within the clipboard.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_CLIPBOARD_MAX_LENGTH 262144
|
|
|
|
|
2015-10-01 18:49:25 +00:00
|
|
|
/**
|
|
|
|
* Initial rate of audio to stream, in Hz. If the RDP server uses a different
|
|
|
|
* value, the Guacamole audio stream will simply be reset appropriately.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_AUDIO_RATE 44100
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of channels to stream for audio. If the RDP server uses a
|
|
|
|
* different value, the Guacamole audio stream will simply be reset
|
|
|
|
* appropriately.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_AUDIO_CHANNELS 2
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of bits per sample within the audio stream. If the RDP server
|
|
|
|
* uses a different value, the Guacamole audio stream will simply be reset
|
|
|
|
* appropriately.
|
|
|
|
*/
|
|
|
|
#define GUAC_RDP_AUDIO_BPS 16
|
|
|
|
|
2012-05-04 22:41:08 +00:00
|
|
|
/**
|
2016-03-01 05:50:00 +00:00
|
|
|
* Handler which frees all data associated with the guac_client.
|
2012-05-04 22:41:08 +00:00
|
|
|
*/
|
2016-03-07 20:37:00 +00:00
|
|
|
guac_client_free_handler guac_rdp_client_free_handler;
|
2011-03-28 03:56:14 +00:00
|
|
|
|
|
|
|
#endif
|