├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── sockproc.c └── tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | sockproc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juce/sockproc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juce/sockproc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juce/sockproc/HEAD/README.md -------------------------------------------------------------------------------- /sockproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juce/sockproc/HEAD/sockproc.c -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juce/sockproc/HEAD/tests.sh --------------------------------------------------------------------------------