]> err.no Git - backuppcd/commitdiff
Include minimal definition of htonll and ntohll in compat.h; remove {hton,ntoh}ll...
authorTollef Fog Heen <tfheen@err.no>
Thu, 17 Jul 2008 17:27:51 +0000 (19:27 +0200)
committerTollef Fog Heen <tfheen@err.no>
Thu, 17 Jul 2008 17:27:51 +0000 (19:27 +0200)
compat.h
htonll.c [deleted file]
htonll.h [deleted file]
net.c
ntohll.c [deleted file]
ntohll.h [deleted file]

index 4bd5c689cd691f012497389c19551d339f9a0e05..9a6d6190259018285e294f40a8620da7207833b6 100644 (file)
--- a/compat.h
+++ b/compat.h
  *      backuppcd-bugs@psislidell.com
  */
 
+#ifndef HAVE_HTONLL
+#include <endian.h>
+#ifdef _BIG_ENDIAN
+htonll(x)   (x)
+#else
+#define htonll(x)   ((((uint64_t)htonl(x)) << 32) + htonl(x >> 32))
+#endif
+#endif
+
+#ifndef HAVE_NTOHLL
+#include <endian.h>
+#ifdef _BIG_ENDIAN
+#define ntohll(x)   (x)
+#else
+#define ntohll(x)   ((((uint64_t)ntohl(x)) << 32) + ntohl(x >> 32))
+#endif
+#endif
 
 #ifndef RSK_COMPAT_H
 #define RSK_COMPAT_H
@@ -105,13 +122,6 @@ typedef int socklen_t;
 #endif
 #endif
 
-#ifndef HAVE_HTONLL
-#include "htonll.h"
-#endif
-
-#ifndef HAVE_NTOHLL
-#include "ntohll.h"
-#endif
 
 #ifndef HAVE_STRSEP
 #include "strsep.h"
diff --git a/htonll.c b/htonll.c
deleted file mode 100644 (file)
index 8a2f12e..0000000
--- a/htonll.c
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2005  Roy Keene
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- *
- * Author Information
- *      Roy Keene
- *      Planning Systems Inc
- *      Slidell, LA
- *      backuppcd-bugs@psislidell.com
- */
-
-#include "compat.h"
-
-#ifndef HAVE_HTONLL
-
-#ifdef HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-#ifdef HAVE_ENDIAN_H
-#include <endian.h>
-#endif
-
-#ifndef __BIG_ENDIAN
-#define __BIG_ENDIAN 4321
-#endif
-#ifndef __LITTLE_ENDIAN
-#define __LITTLE_ENDIAN 1234
-#endif
-
-#ifndef __BYTE_ORDER
-#ifdef WORDS_BIGENDIAN
-#define __BYTE_ORDER __BIG_ENDIAN
-#else
-#define __BYTE_ORDER __LITTLE_ENDIAN
-#endif
-#endif
-
-#include "htonll.h"
-
-uint64_t htonll(uint64_t n) {
-       uint64_t retval;
-
-#if __BYTE_ORDER == __BIG_ENDIAN
-       retval = n;
-#else
-       retval = ((uint64_t) htonl(n & 0xFFFFFFFFLLU)) << 32;
-       retval |= htonl((n & 0xFFFFFFFF00000000LLU) >> 32);
-#endif
-       return(retval);
-}
-
-#endif
diff --git a/htonll.h b/htonll.h
deleted file mode 100644 (file)
index b70652d..0000000
--- a/htonll.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2005  Roy Keene
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- *
- * Author Information
- *      Roy Keene
- *      Planning Systems Inc
- *      Slidell, LA
- *      backuppcd-bugs@psislidell.com
- */
-
-#ifndef _RSK_HTONLL_H
-#define _RSK_HTONLL_H
-
-#include "compat.h"
-
-#ifndef HAVE_HTONLL
-
-#ifdef HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-#ifdef HAVE_ENDIAN_H
-#include <endian.h>
-#endif
-
-uint64_t htonll(uint64_t n);
-
-#endif
-#endif
diff --git a/net.c b/net.c
index 41b0afb23ebb1c64ba5c73d9f0cc7dad0f3fcf9a..3fc41ccc7369116cda0ec0fb948e23642714ce84 100644 (file)
--- a/net.c
+++ b/net.c
 #define SHUT_RDWR 2
 #endif
 
-#ifndef HAVE_HTONLL
-uint64_t htonll(uint64_t n) {
-       uint64_t retval;
-
-#if __BYTE_ORDER == __BIG_ENDIAN
-       retval = n;
-#else
-       retval = ((uint64_t) htonl(n & 0xFFFFFFFFLLU)) << 32;
-       retval |= htonl((n & 0xFFFFFFFF00000000LLU) >> 32);
-#endif
-       return(retval);
-}
-#endif
-
-#ifndef HAVE_NTOHLL
-
-uint64_t ntohll(uint64_t n) {
-       uint64_t retval;
-
-#if __BYTE_ORDER == __BIG_ENDIAN
-       retval = n;
-#else
-       retval = ((uint64_t) ntohl(n & 0xFFFFFFFFLLU)) << 32;
-       retval |= ntohl((n & 0xFFFFFFFF00000000LLU) >> 32);
-#endif
-       return(retval);
-}
-
-#endif
-
-
 /* Do things required for network access. */
 static int net_init(void) {
 #ifdef _USE_WIN32_  
diff --git a/ntohll.c b/ntohll.c
deleted file mode 100644 (file)
index a42af8c..0000000
--- a/ntohll.c
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2005  Roy Keene
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- *
- * Author Information
- *      Roy Keene
- *      Planning Systems Inc
- *      Slidell, LA
- *      backuppcd-bugs@psislidell.com
- */
-
-#include "compat.h"
-
-#ifndef HAVE_NTOHLL
-
-#ifdef HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-#ifdef HAVE_ENDIAN_H
-#include <endian.h>
-#endif
-
-#ifndef __BIG_ENDIAN
-#define __BIG_ENDIAN 4321
-#endif
-#ifndef __LITTLE_ENDIAN
-#define __LITTLE_ENDIAN 1234
-#endif
-
-#ifndef __BYTE_ORDER
-#ifdef WORDS_BIGENDIAN
-#define __BYTE_ORDER __BIG_ENDIAN
-#else
-#define __BYTE_ORDER __LITTLE_ENDIAN
-#endif
-#endif
-
-#include "ntohll.h"
-
-uint64_t ntohll(uint64_t n) {
-       uint64_t retval;
-
-#if __BYTE_ORDER == __BIG_ENDIAN
-       retval = n;
-#else
-       retval = ((uint64_t) ntohl(n & 0xFFFFFFFFLLU)) << 32;
-       retval |= ntohl((n & 0xFFFFFFFF00000000LLU) >> 32);
-#endif
-       return(retval);
-}
-
-#endif
diff --git a/ntohll.h b/ntohll.h
deleted file mode 100644 (file)
index 4f5c02f..0000000
--- a/ntohll.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2005  Roy Keene
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- *
- * Author Information
- *      Roy Keene
- *      Planning Systems Inc
- *      Slidell, LA
- *      backuppcd-bugs@psislidell.com
- */
-
-
-#ifndef _RSK_NTOHLL_H
-#define _RSK_NTOHLL_H
-
-#include "compat.h"
-
-#ifndef HAVE_NTOHLL
-
-#ifdef HAVE_NETINET_IN_H
-#include <netinet/in.h>
-#endif
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-#ifdef HAVE_ENDIAN_H
-#include <endian.h>
-#endif
-
-uint64_t ntohll(uint64_t n);
-
-#endif
-#endif