rdpdbg: use DEBUG_SVC macro.

This commit is contained in:
Vic Lee 2011-07-12 11:40:49 +08:00
parent f28ce72fed
commit d0ac3d3ee9

View File

@ -34,14 +34,14 @@ struct rdpdbg_plugin
static void rdpdbg_process_connect(rdpSvcPlugin* plugin) static void rdpdbg_process_connect(rdpSvcPlugin* plugin)
{ {
printf("rdpdbg_process_connect\n"); DEBUG_SVC("connecting");
} }
static void rdpdbg_process_receive(rdpSvcPlugin* plugin, STREAM* data_in) static void rdpdbg_process_receive(rdpSvcPlugin* plugin, STREAM* data_in)
{ {
STREAM* data_out; STREAM* data_out;
printf("rdpdbg_process_receive: size %d\n", stream_get_size(data_in)); DEBUG_SVC("size %d", stream_get_size(data_in));
stream_free(data_in); stream_free(data_in);
data_out = stream_new(8); data_out = stream_new(8);
@ -51,7 +51,7 @@ static void rdpdbg_process_receive(rdpSvcPlugin* plugin, STREAM* data_in)
static void rdpdbg_process_event(rdpSvcPlugin* plugin, FRDP_EVENT* event) static void rdpdbg_process_event(rdpSvcPlugin* plugin, FRDP_EVENT* event)
{ {
printf("rdpdbg_process_event: event_type %d\n", event->event_type); DEBUG_SVC("event_type %d", event->event_type);
freerdp_event_free(event); freerdp_event_free(event);
event = freerdp_event_new(FRDP_EVENT_TYPE_DEBUG, NULL, NULL); event = freerdp_event_new(FRDP_EVENT_TYPE_DEBUG, NULL, NULL);
@ -60,7 +60,7 @@ static void rdpdbg_process_event(rdpSvcPlugin* plugin, FRDP_EVENT* event)
static void rdpdbg_process_terminate(rdpSvcPlugin* plugin) static void rdpdbg_process_terminate(rdpSvcPlugin* plugin)
{ {
printf("rdpdbg_process_terminate\n"); DEBUG_SVC("terminating");
xfree(plugin); xfree(plugin);
} }