mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-08 21:25:53 +08:00

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
21 lines
257 B
C
Executable File
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;
|
|
}
|