tunneldiggercpp

git clone git://archive.git.mtrnord.blog/MTRNord/tunneldiggercpp.git
Log | Files | Refs | README

commit ee1f46c0868ec0f32c7d6258733a19d78830b0ab
parent 12e8db7eadb8638bf29c97e2bb2c9f9a847fea71
Author: MTRNord <mtrnord1@gmail.com>
Date:   Fri, 22 Sep 2017 20:28:06 +0200

make string concating prettier

Signed-off-by: MTRNord <mtrnord1@gmail.com>

Diffstat:
Mbroker.cpp | 14+++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/broker.cpp b/broker.cpp @@ -2,12 +2,16 @@ // Created by marce on 22.09.2017. // -//#ifdef linux +#ifdef linux #include "broker.h" #include <iostream> -#include <sys/wait.h> + #include <sys/types.h> + #include <sys/wait.h> + #include <unistd.h> + #include <errno.h> + #include <stdlib.h> -using namespace std; + using namespace std; broker::TunnelManager::TunnelManager(const char * nspaceL) { nspace = nspaceL; @@ -52,4 +56,4 @@ using namespace std; return 0; } -//#endif -\ No newline at end of file +#endif +\ No newline at end of file