Porting to FreeBSD:
authorGuus Sliepen <guus@tinc-vpn.org>
Wed, 15 Nov 2000 13:33:27 +0000 (13:33 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 15 Nov 2000 13:33:27 +0000 (13:33 +0000)
- Reorganized and added some #includes

src/Makefile.am
src/meta.c
src/net.c
src/protocol.c

index 7ef3ab3b9d709e919d78dd42b3252cbc2df0b344..a1ec35237184b9e7ee7e4798ad9ce814e1c9f2a9 100644 (file)
@@ -1,11 +1,11 @@
 ## Produce this file with automake to get Makefile.in
 ## Produce this file with automake to get Makefile.in
-# $Id: Makefile.am,v 1.4.4.5 2000/11/02 21:26:51 zarq Exp $
+# $Id: Makefile.am,v 1.4.4.6 2000/11/15 13:33:25 guus Exp $
 
 sbin_PROGRAMS = tincd
 
 tincd_SOURCES = conf.c connlist.c meta.c net.c netutl.c protocol.c subnet.c tincd.c
 
 
 sbin_PROGRAMS = tincd
 
 tincd_SOURCES = conf.c connlist.c meta.c net.c netutl.c protocol.c subnet.c tincd.c
 
-INCLUDES = -I$(top_builddir) -I$(top_srcdir)/lib -I$(top_srcdir)/intl
+INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib -I$(top_srcdir)/intl
 
 noinst_HEADERS = conf.h connlist.h meta.h net.h netutl.h protocol.h subnet.h
 
 
 noinst_HEADERS = conf.h connlist.h meta.h net.h netutl.h protocol.h subnet.h
 
index eb005fdf4dc8b0e6bb5b1b8f3486fc3564867ecf..a4cfc838ec3b34bb3c64c95baf30f5a8c06f0a09 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: meta.c,v 1.1.2.10 2000/11/15 01:06:10 zarq Exp $
+    $Id: meta.c,v 1.1.2.11 2000/11/15 13:33:25 guus Exp $
 */
 
 #include "config.h"
 */
 
 #include "config.h"
 #include <errno.h>
 #include <syslog.h>
 #include <sys/signal.h>
 #include <errno.h>
 #include <syslog.h>
 #include <sys/signal.h>
-#include <sys/socket.h>
 #include <unistd.h>
 #include <string.h>
 #include <unistd.h>
 #include <string.h>
+/* This line must be below the rest for FreeBSD */
+#include <sys/socket.h>
 
 #ifdef HAVE_OPENSSL_EVP_H
 # include <openssl/evp.h>
 
 #ifdef HAVE_OPENSSL_EVP_H
 # include <openssl/evp.h>
index 09d98f41b4fe0c2b1df170d6f91786edfefdb50d..e7297d19a0f9cf1a0f6381d91d212bed0459b40b 100644 (file)
--- a/src/net.c
+++ b/src/net.c
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: net.c,v 1.35.4.72 2000/11/15 01:28:21 zarq Exp $
+    $Id: net.c,v 1.35.4.73 2000/11/15 13:33:26 guus Exp $
 */
 
 #include "config.h"
 
 */
 
 #include "config.h"
 
-#include <arpa/inet.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <fcntl.h>
-/* SunOS really wants sys/socket.h BEFORE net/if.h */
-#include <sys/socket.h>
-#include <net/if.h>
 #include <netdb.h>
 #include <netinet/in.h>
 #include <stdio.h>
 #include <netdb.h>
 #include <netinet/in.h>
 #include <stdio.h>
 #include <syslog.h>
 #include <unistd.h>
 #include <sys/ioctl.h>
 #include <syslog.h>
 #include <unistd.h>
 #include <sys/ioctl.h>
+/* SunOS really wants sys/socket.h BEFORE net/if.h,
+   and FreeBSD wants these lines below the rest. */
+#include <arpa/inet.h>
+#include <sys/socket.h>
+#include <net/if.h>
 
 #ifdef HAVE_OPENSSL_RAND_H
 # include <openssl/rand.h>
 
 #ifdef HAVE_OPENSSL_RAND_H
 # include <openssl/rand.h>
@@ -1097,7 +1098,7 @@ conn_list_t *create_new_connection(int sfd)
 cp
   p = new_conn_list();
 
 cp
   p = new_conn_list();
 
-  if(getpeername(sfd, &ci, &len) < 0)
+  if(getpeername(sfd, (struct sockaddr *) &ci, (socklen_t *) &len) < 0)
     {
       syslog(LOG_ERR, _("System call `%s' failed: %m"),
             "getpeername");
     {
       syslog(LOG_ERR, _("System call `%s' failed: %m"),
             "getpeername");
index fbb0abf31f435cb60cfb12141345f6882e1fd536..dfb6ad97135c7c3d5b83a323b4cb80cca7d168c3 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: protocol.c,v 1.28.4.60 2000/11/15 01:06:11 zarq Exp $
+    $Id: protocol.c,v 1.28.4.61 2000/11/15 13:33:27 guus Exp $
 */
 
 #include "config.h"
 */
 
 #include "config.h"
@@ -30,6 +30,7 @@
 #include <sys/socket.h>
 #include <unistd.h>
 #include <stdio.h>
 #include <sys/socket.h>
 #include <unistd.h>
 #include <stdio.h>
+#include <stdarg.h>
 
 #include <utils.h>
 #include <xalloc.h>
 
 #include <utils.h>
 #include <xalloc.h>