├── .gitignore ├── Makefile.am ├── README.md ├── configure.ac ├── man ├── Makefile.am └── udpproxy.8 └── src ├── Makefile.am ├── cksum.c ├── log.c ├── proxy.c ├── proxy.h ├── splay.h └── state.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src man 2 | dist_doc_DATA = README.md 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/configure.ac -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = udpproxy.8 2 | -------------------------------------------------------------------------------- /man/udpproxy.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/man/udpproxy.8 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/cksum.c -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/log.c -------------------------------------------------------------------------------- /src/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/proxy.c -------------------------------------------------------------------------------- /src/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/proxy.h -------------------------------------------------------------------------------- /src/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/splay.h -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/udpproxy/HEAD/src/state.c --------------------------------------------------------------------------------