diff options
Diffstat (limited to 'lib/Socket.cc')
-rw-r--r-- | lib/Socket.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Socket.cc b/lib/Socket.cc index aada133..a8c5beb 100644 --- a/lib/Socket.cc +++ b/lib/Socket.cc @@ -9,9 +9,9 @@ #include "String.h" #include "Socket.h" #include "Exceptions.h" -#include "config.h" #include "Input.h" #include "Output.h" +#include "config.h" Socket::Socket() throw (GeneralException) : Handle(socket(AF_INET, SOCK_STREAM, 0)), connected(false), listening(false) { if (GetHandle() < 0) { |