summaryrefslogtreecommitdiff
path: root/README
blob: 4d97c47a35363d963617ac05f7fcb881de2f386a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
This program hides UDP traffic as TCP traffic in order to bypass certain
firewalls.

It is not designed to bypass rigorous deep packet inspection; for example,
there is no window scaling; all data received as UDP will be immediately
transmitted as TCP with a fixed window size. There is also no retransmission,
although that could be implemented (at a detriment to the overall network health).

This program is intended to be C99 and POSIX compatible, and requires only
libev. If desired, it should be easily portable to use libevent instead, as it
uses only basic event-based programming concepts.

Example usage:
    # gmake
    [ ... ]
    # ./test.sh
    IPv4 test succeeded.
    IPv6 test succeeded.
    server# openvpn --config ... --proto udp6 --local ::1
    server# udpintcp server server 11940 ::1 1194
    client# udpintcp client ::1 1194 server 11940
    client# openvpn --config ... --proto udp6 --remote ::1 11940