diff options
Diffstat (limited to 'libxrdp/xrdp_rdp.c')
-rw-r--r-- | libxrdp/xrdp_rdp.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index ff53cb80..adb66d99 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -40,7 +40,7 @@ #define FASTPATH_FRAG_SIZE (16 * 1024 - 128) /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_read_config(struct xrdp_client_info *client_info) { int index = 0; @@ -357,7 +357,7 @@ xrdp_rdp_detect_cpu(void) #endif /*****************************************************************************/ -struct xrdp_rdp *APP_CC +struct xrdp_rdp * xrdp_rdp_create(struct xrdp_session *session, struct trans *trans) { struct xrdp_rdp *self = (struct xrdp_rdp *)NULL; @@ -392,7 +392,7 @@ xrdp_rdp_create(struct xrdp_session *session, struct trans *trans) } /*****************************************************************************/ -void APP_CC +void xrdp_rdp_delete(struct xrdp_rdp *self) { if (self == 0) @@ -409,7 +409,7 @@ xrdp_rdp_delete(struct xrdp_rdp *self) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_init(struct xrdp_rdp *self, struct stream *s) { if (xrdp_sec_init(self->sec_layer, s) != 0) @@ -422,7 +422,7 @@ xrdp_rdp_init(struct xrdp_rdp *self, struct stream *s) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_init_data(struct xrdp_rdp *self, struct stream *s) { if (xrdp_sec_init(self->sec_layer, s) != 0) @@ -436,7 +436,7 @@ xrdp_rdp_init_data(struct xrdp_rdp *self, struct stream *s) /*****************************************************************************/ /* returns error */ -int APP_CC +int xrdp_rdp_recv(struct xrdp_rdp *self, struct stream *s, int *code) { int error = 0; @@ -535,7 +535,7 @@ xrdp_rdp_recv(struct xrdp_rdp *self, struct stream *s, int *code) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_send(struct xrdp_rdp *self, struct stream *s, int pdu_type) { int len = 0; @@ -558,7 +558,7 @@ xrdp_rdp_send(struct xrdp_rdp *self, struct stream *s, int pdu_type) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_send_data(struct xrdp_rdp *self, struct stream *s, int data_pdu_type) { @@ -647,7 +647,7 @@ xrdp_rdp_send_data(struct xrdp_rdp *self, struct stream *s, /*****************************************************************************/ /* returns the fastpath rdp byte count */ -int APP_CC +int xrdp_rdp_get_fastpath_bytes(struct xrdp_rdp *self) { if (self->client_info.rdp_compression) @@ -658,7 +658,7 @@ xrdp_rdp_get_fastpath_bytes(struct xrdp_rdp *self) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_init_fastpath(struct xrdp_rdp *self, struct stream *s) { if (xrdp_sec_init_fastpath(self->sec_layer, s) != 0) @@ -680,7 +680,7 @@ xrdp_rdp_init_fastpath(struct xrdp_rdp *self, struct stream *s) /* returns error */ /* 2.2.9.1.2.1 Fast-Path Update (TS_FP_UPDATE) * http://msdn.microsoft.com/en-us/library/cc240622.aspx */ -int APP_CC +int xrdp_rdp_send_fastpath(struct xrdp_rdp *self, struct stream *s, int data_pdu_type) { @@ -805,7 +805,7 @@ xrdp_rdp_send_fastpath(struct xrdp_rdp *self, struct stream *s, } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_send_data_update_sync(struct xrdp_rdp *self) { struct stream *s = (struct stream *)NULL; @@ -863,7 +863,7 @@ xrdp_rdp_send_data_update_sync(struct xrdp_rdp *self) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_incoming(struct xrdp_rdp *self) { struct xrdp_iso *iso; @@ -907,7 +907,7 @@ xrdp_rdp_incoming(struct xrdp_rdp *self) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_process_data_pointer(struct xrdp_rdp *self, struct stream *s) { return 0; @@ -915,7 +915,7 @@ xrdp_rdp_process_data_pointer(struct xrdp_rdp *self, struct stream *s) /*****************************************************************************/ /* RDP_DATA_PDU_INPUT */ -static int APP_CC +static int xrdp_rdp_process_data_input(struct xrdp_rdp *self, struct stream *s) { int num_events; @@ -966,7 +966,7 @@ xrdp_rdp_process_data_input(struct xrdp_rdp *self, struct stream *s) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_send_synchronise(struct xrdp_rdp *self) { struct stream *s; @@ -995,7 +995,7 @@ xrdp_rdp_send_synchronise(struct xrdp_rdp *self) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_send_control(struct xrdp_rdp *self, int action) { struct stream *s; @@ -1025,7 +1025,7 @@ xrdp_rdp_send_control(struct xrdp_rdp *self, int action) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_process_data_control(struct xrdp_rdp *self, struct stream *s) { int action; @@ -1054,7 +1054,7 @@ xrdp_rdp_process_data_control(struct xrdp_rdp *self, struct stream *s) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_process_data_sync(struct xrdp_rdp *self) { DEBUG(("xrdp_rdp_process_data_sync")); @@ -1062,7 +1062,7 @@ xrdp_rdp_process_data_sync(struct xrdp_rdp *self) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_process_screen_update(struct xrdp_rdp *self, struct stream *s) { int left; @@ -1089,7 +1089,7 @@ xrdp_rdp_process_screen_update(struct xrdp_rdp *self, struct stream *s) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_send_fontmap(struct xrdp_rdp *self) { struct stream *s; @@ -1121,7 +1121,7 @@ xrdp_rdp_send_fontmap(struct xrdp_rdp *self) } /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_process_data_font(struct xrdp_rdp *self, struct stream *s) { int seq; @@ -1151,7 +1151,7 @@ xrdp_rdp_process_data_font(struct xrdp_rdp *self, struct stream *s) /*****************************************************************************/ /* sent 37 pdu */ -static int APP_CC +static int xrdp_rdp_send_disconnect_query_response(struct xrdp_rdp *self) { struct stream *s; @@ -1180,7 +1180,7 @@ xrdp_rdp_send_disconnect_query_response(struct xrdp_rdp *self) #if 0 /* not used */ /*****************************************************************************/ /* sent RDP_DATA_PDU_DISCONNECT 47 pdu */ -static int APP_CC +static int xrdp_rdp_send_disconnect_reason(struct xrdp_rdp *self, int reason) { struct stream *s; @@ -1209,7 +1209,7 @@ xrdp_rdp_send_disconnect_reason(struct xrdp_rdp *self, int reason) #endif /*****************************************************************************/ -static int APP_CC +static int xrdp_rdp_process_frame_ack(struct xrdp_rdp *self, struct stream *s) { int frame_id; @@ -1228,7 +1228,7 @@ xrdp_rdp_process_frame_ack(struct xrdp_rdp *self, struct stream *s) /*****************************************************************************/ /* RDP_PDU_DATA */ -int APP_CC +int xrdp_rdp_process_data(struct xrdp_rdp *self, struct stream *s) { int data_type; @@ -1283,7 +1283,7 @@ xrdp_rdp_process_data(struct xrdp_rdp *self, struct stream *s) return 0; } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_disconnect(struct xrdp_rdp *self) { int rv; @@ -1295,7 +1295,7 @@ xrdp_rdp_disconnect(struct xrdp_rdp *self) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_send_deactivate(struct xrdp_rdp *self) { struct stream *s; @@ -1326,7 +1326,7 @@ xrdp_rdp_send_deactivate(struct xrdp_rdp *self) } /*****************************************************************************/ -int APP_CC +int xrdp_rdp_send_session_info(struct xrdp_rdp *self, const char *data, int data_bytes) { |