2011-07-01 04:31:07 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
2011-07-07 21:37:48 +04:00
|
|
|
* RDP Settings
|
2011-07-01 04:31:07 +04:00
|
|
|
*
|
|
|
|
* Copyright 2009-2011 Jay Sorg
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-07-22 08:52:57 +04:00
|
|
|
#include "config.h"
|
2011-07-21 06:05:12 +04:00
|
|
|
#include "capabilities.h"
|
2011-07-07 21:37:48 +04:00
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
|
2011-07-22 08:52:57 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2011-07-07 21:37:48 +04:00
|
|
|
#include <freerdp/settings.h>
|
|
|
|
|
2011-07-10 20:10:24 +04:00
|
|
|
static char client_dll[] = "C:\\Windows\\System32\\mstscax.dll";
|
|
|
|
|
2011-07-07 21:37:48 +04:00
|
|
|
rdpSettings* settings_new()
|
|
|
|
{
|
|
|
|
rdpSettings* settings;
|
|
|
|
|
|
|
|
settings = (rdpSettings*) xzalloc(sizeof(rdpSettings));
|
|
|
|
|
|
|
|
if (settings != NULL)
|
|
|
|
{
|
|
|
|
settings->width = 1024;
|
|
|
|
settings->height = 768;
|
2011-08-17 22:13:44 +04:00
|
|
|
settings->workarea = False;
|
2011-08-19 19:12:30 +04:00
|
|
|
settings->fullscreen = False;
|
2011-08-17 22:13:44 +04:00
|
|
|
settings->decorations = True;
|
2011-07-08 08:37:25 +04:00
|
|
|
settings->rdp_version = 7;
|
2011-07-07 21:37:48 +04:00
|
|
|
settings->color_depth = 16;
|
2011-07-31 07:51:26 +04:00
|
|
|
settings->nla_security = True;
|
|
|
|
settings->tls_security = True;
|
|
|
|
settings->rdp_security = True;
|
2011-07-08 08:37:25 +04:00
|
|
|
settings->client_build = 2600;
|
2011-07-08 23:32:06 +04:00
|
|
|
settings->kbd_type = 0;
|
2011-07-08 08:37:25 +04:00
|
|
|
settings->kbd_subtype = 0;
|
2011-07-08 23:32:06 +04:00
|
|
|
settings->kbd_fn_keys = 0;
|
2011-07-08 08:37:25 +04:00
|
|
|
settings->kbd_layout = 0x409;
|
2011-07-20 00:30:05 +04:00
|
|
|
settings->encryption = False;
|
2011-08-18 20:17:13 +04:00
|
|
|
settings->port = 3389;
|
2011-07-08 08:37:25 +04:00
|
|
|
|
|
|
|
settings->performance_flags =
|
|
|
|
PERF_DISABLE_FULLWINDOWDRAG |
|
|
|
|
PERF_DISABLE_MENUANIMATIONS |
|
|
|
|
PERF_DISABLE_WALLPAPER;
|
|
|
|
|
2011-07-25 21:42:14 +04:00
|
|
|
settings->auto_reconnection = True;
|
|
|
|
|
2011-07-20 00:30:05 +04:00
|
|
|
settings->encryption_method = ENCRYPTION_METHOD_NONE;
|
|
|
|
settings->encryption_level = ENCRYPTION_LEVEL_NONE;
|
2011-07-09 00:05:30 +04:00
|
|
|
|
2011-08-18 21:07:52 +04:00
|
|
|
settings->authentication = True;
|
|
|
|
|
2011-07-21 06:05:12 +04:00
|
|
|
settings->order_support[NEG_DSTBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_PATBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_SCRBLT_INDEX] = True;
|
2011-08-05 00:22:15 +04:00
|
|
|
settings->order_support[NEG_OPAQUE_RECT_INDEX] = True;
|
2011-07-21 06:05:12 +04:00
|
|
|
settings->order_support[NEG_DRAWNINEGRID_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MULTIDSTBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MULTIPATBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MULTISCRBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MULTIOPAQUERECT_INDEX] = True;
|
2011-08-05 00:22:15 +04:00
|
|
|
settings->order_support[NEG_MULTI_DRAWNINEGRID_INDEX] = True;
|
|
|
|
settings->order_support[NEG_LINETO_INDEX] = True;
|
|
|
|
settings->order_support[NEG_POLYLINE_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MEMBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MEM3BLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_SAVEBITMAP_INDEX] = True;
|
|
|
|
settings->order_support[NEG_GLYPH_INDEX_INDEX] = True;
|
2011-07-21 06:05:12 +04:00
|
|
|
settings->order_support[NEG_FAST_INDEX_INDEX] = True;
|
2011-08-05 00:22:15 +04:00
|
|
|
settings->order_support[NEG_FAST_GLYPH_INDEX] = True;
|
2011-07-21 06:05:12 +04:00
|
|
|
settings->order_support[NEG_POLYGON_SC_INDEX] = True;
|
|
|
|
settings->order_support[NEG_POLYGON_CB_INDEX] = True;
|
|
|
|
settings->order_support[NEG_ELLIPSE_SC_INDEX] = True;
|
|
|
|
settings->order_support[NEG_ELLIPSE_CB_INDEX] = True;
|
|
|
|
|
|
|
|
settings->color_pointer = True;
|
2011-07-21 09:56:48 +04:00
|
|
|
settings->large_pointer = True;
|
|
|
|
|
2011-08-05 00:22:15 +04:00
|
|
|
settings->draw_gdi_plus = False;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
settings->frame_marker = False;
|
|
|
|
settings->bitmap_cache_v3 = False;
|
|
|
|
|
2011-08-05 09:21:32 +04:00
|
|
|
settings->bitmap_cache = True;
|
2011-07-25 21:42:14 +04:00
|
|
|
settings->persistent_bitmap_cache = False;
|
|
|
|
|
2011-08-21 22:16:53 +04:00
|
|
|
settings->glyphSupportLevel = GLYPH_SUPPORT_NONE;
|
|
|
|
settings->glyphCache[0].cacheEntries = 254;
|
|
|
|
settings->glyphCache[0].cacheMaximumCellSize = 4;
|
|
|
|
settings->glyphCache[1].cacheEntries = 254;
|
|
|
|
settings->glyphCache[1].cacheMaximumCellSize = 4;
|
|
|
|
settings->glyphCache[2].cacheEntries = 254;
|
|
|
|
settings->glyphCache[2].cacheMaximumCellSize = 8;
|
|
|
|
settings->glyphCache[3].cacheEntries = 254;
|
|
|
|
settings->glyphCache[3].cacheMaximumCellSize = 8;
|
|
|
|
settings->glyphCache[4].cacheEntries = 254;
|
|
|
|
settings->glyphCache[4].cacheMaximumCellSize = 16;
|
|
|
|
settings->glyphCache[5].cacheEntries = 254;
|
|
|
|
settings->glyphCache[5].cacheMaximumCellSize = 32;
|
|
|
|
settings->glyphCache[6].cacheEntries = 254;
|
|
|
|
settings->glyphCache[6].cacheMaximumCellSize = 64;
|
|
|
|
settings->glyphCache[7].cacheEntries = 254;
|
|
|
|
settings->glyphCache[7].cacheMaximumCellSize = 128;
|
|
|
|
settings->glyphCache[8].cacheEntries = 254;
|
|
|
|
settings->glyphCache[8].cacheMaximumCellSize = 256;
|
|
|
|
settings->glyphCache[9].cacheEntries = 64;
|
|
|
|
settings->glyphCache[9].cacheMaximumCellSize = 248;
|
|
|
|
settings->fragCache.cacheEntries = 64;
|
|
|
|
settings->fragCache.cacheMaximumCellSize = 248;
|
|
|
|
|
2011-08-06 00:56:40 +04:00
|
|
|
settings->offscreen_bitmap_cache = True;
|
|
|
|
settings->offscreen_bitmap_cache_size = 7680;
|
|
|
|
settings->offscreen_bitmap_cache_entries = 100;
|
2011-07-21 09:56:48 +04:00
|
|
|
|
|
|
|
settings->draw_nine_grid_cache_size = 2560;
|
|
|
|
settings->draw_nine_grid_cache_entries = 256;
|
2011-07-21 06:05:12 +04:00
|
|
|
|
2011-07-27 03:14:11 +04:00
|
|
|
settings->client_dir = xstrdup(client_dll);
|
2011-07-10 20:10:24 +04:00
|
|
|
|
2011-08-15 01:05:34 +04:00
|
|
|
settings->num_icon_caches = 3;
|
|
|
|
settings->num_icon_cache_entries = 12;
|
|
|
|
|
2011-08-21 06:57:38 +04:00
|
|
|
settings->vc_chunk_size = CHANNEL_CHUNK_LENGTH;
|
|
|
|
|
|
|
|
settings->multifrag_max_request_size = 0x200000;
|
|
|
|
|
2011-08-16 10:37:11 +04:00
|
|
|
settings->fastpath_input = True;
|
2011-08-16 11:04:57 +04:00
|
|
|
settings->fastpath_output = True;
|
2011-08-16 10:37:11 +04:00
|
|
|
|
2011-07-08 08:37:25 +04:00
|
|
|
settings->uniconv = freerdp_uniconv_new();
|
|
|
|
gethostname(settings->client_hostname, sizeof(settings->client_hostname) - 1);
|
2011-07-07 21:37:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
void settings_free(rdpSettings* settings)
|
|
|
|
{
|
|
|
|
if (settings != NULL)
|
|
|
|
{
|
2011-07-08 08:37:25 +04:00
|
|
|
freerdp_uniconv_free(settings->uniconv);
|
2011-07-22 08:52:57 +04:00
|
|
|
xfree(settings->hostname);
|
|
|
|
xfree(settings->username);
|
|
|
|
xfree(settings->password);
|
|
|
|
xfree(settings->domain);
|
|
|
|
xfree(settings->shell);
|
|
|
|
xfree(settings->directory);
|
2011-08-20 14:22:14 +04:00
|
|
|
xfree(settings->ip_address);
|
2011-07-22 08:52:57 +04:00
|
|
|
xfree(settings->client_dir);
|
2011-08-19 09:35:29 +04:00
|
|
|
xfree(settings->cert_file);
|
|
|
|
xfree(settings->privatekey_file);
|
2011-07-07 21:37:48 +04:00
|
|
|
xfree(settings);
|
|
|
|
}
|
|
|
|
}
|