/[rdesktop]/sourceforge.net/rdesktop/trunk/rdpsnd.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /sourceforge.net/rdesktop/trunk/rdpsnd.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 435 - (hide annotations)
Wed Jul 9 09:18:20 2003 UTC (20 years, 10 months ago) by astrand
Original Path: sourceforge.net/trunk/rdesktop/rdpsnd.c
File MIME type: text/plain
File size: 346 byte(s)
Indent fixes

1 matthewc 432 #include "rdesktop.h"
2    
3     static VCHANNEL *rdpsnd_channel;
4    
5     static void
6     rdpsnd_process(STREAM s)
7     {
8     printf("rdpsnd_process\n");
9 astrand 435 hexdump(s->p, s->end - s->p);
10 matthewc 432 }
11    
12     BOOL
13     rdpsnd_init(void)
14     {
15 astrand 435 rdpsnd_channel =
16     channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP,
17     rdpsnd_process);
18 matthewc 432 return (rdpsnd_channel != NULL);
19     }

  ViewVC Help
Powered by ViewVC 1.1.26