From 12cbbf74e6ade3d4f528113e7b5c4d64cd95cf2f Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sun, 2 Mar 2014 00:23:17 -0800 Subject: xrdp:no logic change, comments and printfs --- xrdp/xrdp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index a778058f..5dc20ecd 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -1,7 +1,7 @@ /** * xrdp: A Remote Desktop Protocol server. * - * Copyright (C) Jay Sorg 2004-2013 + * Copyright (C) Jay Sorg 2004-2014 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. -- cgit v1.2.1 From f94f5bec1c0563954924d7e036d0f70970236b16 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Fri, 14 Mar 2014 11:48:07 -0700 Subject: xrdp: speed up bitmap cache lookup using hash table --- xrdp/xrdp.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index 5dc20ecd..a4d2971b 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -213,9 +213,6 @@ int APP_CC xrdp_bitmap_compare(struct xrdp_bitmap* self, struct xrdp_bitmap* b); int APP_CC -xrdp_bitmap_compare_with_crc(struct xrdp_bitmap* self, - struct xrdp_bitmap* b); -int APP_CC xrdp_bitmap_invalidate(struct xrdp_bitmap* self, struct xrdp_rect* rect); int APP_CC xrdp_bitmap_def_proc(struct xrdp_bitmap* self, int msg, -- cgit v1.2.1 From da0d0e687aa25beec2f80c247c51a31b148dbf46 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sat, 15 Mar 2014 21:59:16 -0700 Subject: reduce the memory needed for crc16 bitmap cache lists --- xrdp/xrdp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index a4d2971b..1713835d 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -26,6 +26,7 @@ #include "parse.h" #include "trans.h" #include "list.h" +#include "list16.h" #include "libxrdpinc.h" #include "xrdp_constants.h" #include "xrdp_types.h" -- cgit v1.2.1 From 8f05bee2389c08dd2abd630941b544425c5ba7f1 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sun, 16 Mar 2014 00:09:58 -0700 Subject: xrdp: add an option to do md5 bitmap hash for bitmap cache --- xrdp/xrdp.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index 1713835d..0812a74f 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -207,6 +207,8 @@ xrdp_bitmap_copy_box(struct xrdp_bitmap* self, struct xrdp_bitmap* dest, int x, int y, int cx, int cy); int APP_CC +xrdp_bitmap_hash_crc(struct xrdp_bitmap *self); +int APP_CC xrdp_bitmap_copy_box_with_crc(struct xrdp_bitmap* self, struct xrdp_bitmap* dest, int x, int y, int cx, int cy); -- cgit v1.2.1 From 575fc9fb6f3f12f43890340f0c5005ae22332b5c Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sat, 22 Mar 2014 16:51:30 -0700 Subject: work on codec mode jpeg --- xrdp/xrdp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index 0812a74f..32129c01 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -404,7 +404,8 @@ server_composite(struct xrdp_mod* mod, int srcidx, int srcformat, int srcwidth, int DEFAULT_CC server_paint_rects(struct xrdp_mod* mod, int num_drects, short *drects, int num_crects, short *crects, - char *data, int width, int height, int flags); + char *data, int width, int height, + int flags, int frame_id); int DEFAULT_CC server_set_pointer(struct xrdp_mod* mod, int x, int y, char* data, char* mask); -- cgit v1.2.1 From 59fa8df434def610efcf08b04204c40740652117 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Mon, 19 May 2014 23:47:38 -0700 Subject: xrdp: don't show connection log unless there is a problem Conflicts: xrdp/xrdp_mm.c --- xrdp/xrdp.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'xrdp/xrdp.h') diff --git a/xrdp/xrdp.h b/xrdp/xrdp.h index 32129c01..67488a60 100644 --- a/xrdp/xrdp.h +++ b/xrdp/xrdp.h @@ -138,6 +138,8 @@ callback(long id, int msg, long param1, long param2, long param3, long param4); int APP_CC xrdp_wm_delete_all_childs(struct xrdp_wm* self); int APP_CC +xrdp_wm_show_log(struct xrdp_wm *self); +int APP_CC xrdp_wm_log_msg(struct xrdp_wm* self, char* msg); int APP_CC xrdp_wm_get_wait_objs(struct xrdp_wm* self, tbus* robjs, int* rc, -- cgit v1.2.1