rdesktop/rdpsnd.c
Peter Åstrand 7ff54cdd90 Indent fixes
git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@434 423420c4-83ab-492f-b58f-81f9feb106b5
2003-07-09 09:18:20 +00:00

20 lines
346 B
C

#include "rdesktop.h"
static VCHANNEL *rdpsnd_channel;
static void
rdpsnd_process(STREAM s)
{
printf("rdpsnd_process\n");
hexdump(s->p, s->end - s->p);
}
BOOL
rdpsnd_init(void)
{
rdpsnd_channel =
channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP,
rdpsnd_process);
return (rdpsnd_channel != NULL);
}