]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blobdiff - src/tlsproxy.c
Sort #includes and remove unnecessary comments.
[tlsproxy/tlsproxy.git] / src / tlsproxy.c
index 1e8642fa4ca4e40d93879e058bffb974bc402a8e..401553f52e4d922846c4c9da664f9cf3bd67c416 100644 (file)
 #include "sem.h"
 #include "connection.h"
 
-/* socket(), bind(), accept(), listen() */
-#include <sys/types.h>
-#include <sys/socket.h>
-/* close() */
-#include <unistd.h>
-/* htons() */
 #include <arpa/inet.h>
-/* sigaction() */
-#include <signal.h>
-/* errno */
 #include <errno.h>
-/* pthread_*() */
 #include <pthread.h>
+#include <signal.h>
+#include <sys/socket.h>
+#include <sys/types.h>
+#include <unistd.h>
 
 /* For GnuTLS. */
 #include <gcrypt.h>