This breaks MTU |
||
---|---|---|
src | ||
test | ||
test-suite | ||
.clang-format | ||
.gitignore | ||
LICENSE | ||
Makefile | ||
Makefile.conf | ||
README.md | ||
local.conf.example |
README.md
pEpTransportUDP
Transport backend for pEpEngine, using UDP to transmit Sync messages only.
Dependencies
- the pEp stack up until pEpEngine according to these instructions
- libpEpTransport, tip of branch
UDP
Build Configuration
The build configuration file is called local.conf
.
Use the file local.conf.example
as a template.
cp local.conf.example local.conf
Then, tweak it to your needs.
Make Targets
The default make target is install
.
Build
make src
- Generates all the object files and linked binaries of libpEpTransportUDP
Test
make test
- Generates standalone binaries for basic test cases
Install
make install
- Installs the header files in $PREFIX/include/pEp and library binaries in $PREFIX/lib/
make uninstall
- Removes all headers from $PREFIX/include/pEp and library binaries from $PREFIX/lib/
Clean
make clean