0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00
openvpn/install-win32/u2d.c
james 6fbf66fad3 This is the start of the BETA21 branch.
It includes the --topology feature, and
TAP-Win32 driver changes to allow
non-admin access.



git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@580 e7ae566f-a301-0410-adde-c780ea21d3b5
2005-09-26 05:28:27 +00:00

21 lines
257 B
C
Executable File

#include <stdio.h>
int
main (int argc, char *argv[])
{
int c;
int enable = 1;
while ((c = getchar()) != EOF)
{
#if 0
if (c == '\r')
enable = 0;
if (enable && c == '\n')
putchar ('\r');
#endif
putchar (c);
}
return 0;
}