From fcffcc688f03f365d636df509cd00af5ef0259d8 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Mon, 10 Jul 2017 14:18:59 +0200 Subject: [PATCH] Fix socket header mistake --- lib/socket.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/socket.h b/lib/socket.h index 2d9e78f4..1a4f8e48 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -52,11 +52,8 @@ namespace Socket{ }; // Buffer - class Server; - /// This class is for easy communicating through sockets, either TCP or Unix. class Connection{ - friend Server; private: int sock; ///< Internally saved socket number. int pipes[2]; ///< Internally saved file descriptors for pipe socket simulation.