diff options
author | Sander Vrijders <[email protected]> | 2018-10-22 14:52:51 +0200 |
---|---|---|
committer | Dimitri Staessens <[email protected]> | 2018-10-22 16:38:44 +0200 |
commit | e161da9a580152e52a84c5ca31422355307bab42 (patch) | |
tree | 13af20c280476f95cbdf39bc19f5d43d8d7f02c7 /src/tools/CMakeLists.txt | |
parent | 619502f7178fef30e726ba57b5a49b61c1c1a276 (diff) | |
download | ouroboros-e161da9a580152e52a84c5ca31422355307bab42.tar.gz ouroboros-e161da9a580152e52a84c5ca31422355307bab42.zip |
tools: Add ovpn application
This adds the ovpn application which allows to send TCP/IP traffic
over Ouroboros. This is done by opening a TUN interface and allocating
a flow to another ovpn application so that applications using TCP/IP
can be used over Ouroboros as well.
Signed-off-by: Sander Vrijders <[email protected]>
Signed-off-by: Dimitri Staessens <[email protected]>
Diffstat (limited to 'src/tools/CMakeLists.txt')
-rw-r--r-- | src/tools/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index b81e5439..d7a4d17a 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -3,3 +3,6 @@ add_subdirectory(ocbr) add_subdirectory(oecho) add_subdirectory(oping) add_subdirectory(operf) +if (CMAKE_SYSTEM_NAME STREQUAL "Linux") + add_subdirectory(ovpn) +endif () |