aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/network/network.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/network.h')
-rw-r--r--src/network/network.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/network/network.h b/src/network/network.h
index 35042f7..56c37fb 100644
--- a/src/network/network.h
+++ b/src/network/network.h
@@ -33,16 +33,17 @@
#ifndef NETWORK_HPP
#define NETWORK_HPP
-#include <stdint.h>
+#include <cassert>
+#include <cmath>
+#include <cstdint>
+#include <cstring>
#include <deque>
-#include <sys/socket.h>
-#include <netinet/in.h>
+#include <exception>
#include <string>
-#include <math.h>
#include <vector>
-#include <assert.h>
-#include <exception>
-#include <string.h>
+
+#include <sys/socket.h>
+#include <netinet/in.h>
#include "src/crypto/crypto.h"