]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
src/*: Cleanup includes.
authorSimon Ruderich <simon@ruderich.org>
Mon, 7 Mar 2011 00:41:06 +0000 (01:41 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 7 Mar 2011 00:41:06 +0000 (01:41 +0100)
src/connection.c
src/sem.c
src/tlsproxy.c
src/tlsproxy.h

index 65714c7b6421dec5705cb1f9b3d6c8699446cfcc..4160c7feff77388206b3459bf82f18c8f2734eeb 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <config.h>
+#include "tlsproxy.h"
+#include "connection.h"
 
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
 /* close() */
 #include <unistd.h>
 /* getaddrinfo() */
@@ -29,9 +27,6 @@
 /* poll() */
 #include <poll.h>
 
-#include "connection.h"
-#include "tlsproxy.h"
-
 
 /* Maximum line of the request line. Longer request lines are aborted with an
  * error. The standard doesn't specify a maximum line length but this should
index 86fe39882c54a315e04a2f0b773f0b08db4aa801..0122390731bfde3b3db8b3d69addfd4fef38b80d 100644 (file)
--- a/src/sem.c
+++ b/src/sem.c
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "sem.h"
+
 #include <stdlib.h>
 #include <pthread.h>
 
-#include "sem.h"
-
 
 struct SEM {
     pthread_mutex_t mutex;
index ab9c6dff6c848b53597c2195662f752cf7ad940c..70cf49d8b85b545bfe85c3aeddf1bf0729d2e7e2 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <config.h>
+#include "tlsproxy.h"
+#include "sem.h"
+#include "connection.h"
 
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
 /* socket(), bind(), accept(), listen() */
 #include <sys/types.h>
 #include <sys/socket.h>
 /* pthread_*() */
 #include <pthread.h>
 
-#include "tlsproxy.h"
-#include "sem.h"
-#include "connection.h"
-
 /* Size of ringbuffer. */
 #define RINGBUFFER_SIZE 10
 
index 513964cc02381c15e6b81689d5377a1081846c9b..a0db68fd0726f9674014c1d3f2fd5106e553c445 100644 (file)
 #ifndef TLSPROXY_H
 #define TLSPROXY_H
 
+#include <config.h>
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+
 /* Proxy hostname and port if specified on the command line. */
 char *use_proxy_host;
 char *use_proxy_port;