Big header file cleanup: everything that has to do with standard system

libraries is moved to system.h.
This commit is contained in:
Guus Sliepen 2003-07-17 15:06:27 +00:00
parent 47721be760
commit e449d94cae
48 changed files with 359 additions and 726 deletions

View file

@ -29,14 +29,13 @@
library for inclusion into tinc (http://tinc.nl.linux.org/) by
Guus Sliepen <guus@sliepen.eu.org>.
$Id: avl_tree.c,v 1.1.2.15 2003/07/12 17:48:38 guus Exp $
$Id: avl_tree.c,v 1.1.2.16 2003/07/17 15:06:25 guus Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <xalloc.h>
#include "system.h"
#include "avl_tree.h"
#include "xalloc.h"
#ifdef AVL_COUNT
#define AVL_NODE_COUNT(n) ((n) ? (n)->count : 0)

View file

@ -17,23 +17,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: dropin.c,v 1.1.2.14 2003/07/12 17:48:38 guus Exp $
$Id: dropin.c,v 1.1.2.15 2003/07/17 15:06:25 guus Exp $
*/
#include "config.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <xalloc.h>
#include <system.h>
#include <errno.h>
#include "system.h"
#ifndef HAVE_DAEMON
/*

View 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.
$Id: dropin.h,v 1.1.2.11 2003/07/12 17:48:38 guus Exp $
$Id: dropin.h,v 1.1.2.12 2003/07/17 15:06:25 guus Exp $
*/
#ifndef __DROPIN_H__
@ -36,8 +36,6 @@ extern int asprintf(char **, const char *, ...);
#endif
#ifndef HAVE_GETNAMEINFO
#include <sys/types.h>
#include <sys/socket.h>
extern int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
size_t hostlen, char *serv, size_t servlen, int flags);
#endif

View file

@ -9,17 +9,7 @@
* that ai_family is AF_INET. Don't use it for another purpose.
*/
#include "config.h"
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#include <system.h>
#include "system.h"
#include "fake-getaddrinfo.h"

View file

@ -1,14 +1,8 @@
/* $Id: fake-getaddrinfo.h,v 1.1.2.2 2003/07/06 23:16:27 guus Exp $ */
/* $Id: fake-getaddrinfo.h,v 1.1.2.3 2003/07/17 15:06:25 guus Exp $ */
#ifndef _FAKE_GETADDRINFO_H
#define _FAKE_GETADDRINFO_H
#include "config.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include "fake-gai-errnos.h"
#ifndef AI_PASSIVE

View file

@ -9,17 +9,7 @@
* that ai_family is AF_INET. Don't use it for another purpose.
*/
#include "config.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#include <system.h>
#include "system.h"
#include "fake-getnameinfo.h"
#include "fake-getaddrinfo.h"

View file

@ -1,13 +1,8 @@
/* $Id: fake-getnameinfo.h,v 1.1.2.2 2003/07/12 17:41:45 guus Exp $ */
/* $Id: fake-getnameinfo.h,v 1.1.2.3 2003/07/17 15:06:25 guus Exp $ */
#ifndef _FAKE_GETNAMEINFO_H
#define _FAKE_GETNAMEINFO_H
#include "config.h"
#include <sys/socket.h>
#include <netdb.h>
#ifndef HAVE_GETNAMEINFO
int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
size_t hostlen, char *serv, size_t servlen, int flags);

View file

@ -17,19 +17,12 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: ipv6.h,v 1.1.2.3 2003/07/11 16:12:59 guus Exp $
$Id: ipv6.h,v 1.1.2.4 2003/07/17 15:06:25 guus Exp $
*/
#ifndef __TINC_IPV6_H__
#define __TINC_IPV6_H__
#include "config.h"
#include <netinet/in.h>
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#ifndef AF_INET6
#define AF_INET6 10
#endif

View file

@ -17,17 +17,13 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: list.c,v 1.1.2.15 2003/07/12 17:48:38 guus Exp $
$Id: list.c,v 1.1.2.16 2003/07/17 15:06:25 guus Exp $
*/
#include "config.h"
#include <stdlib.h>
#include <xalloc.h>
#include <system.h>
#include "system.h"
#include "list.h"
#include "xalloc.h"
/* (De)constructors */

View file

@ -25,16 +25,7 @@
* First version (v0.2) released
*/
#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <sys/types.h>
#include <signal.h>
#include <fcntl.h>
#include "system.h"
/* read_pid
*

View file

@ -18,15 +18,10 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#include "system.h"
#include <sys/types.h>
#include <ctype.h>
#include <string.h>
#include <utils.h>
#include <syslog.h>
#include <xalloc.h>
#include "../src/logger.h"
#include "utils.h"
#ifdef ENABLE_TRACING
volatile int (cp_line[]) = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
@ -64,7 +59,7 @@ void bin2hex(char *src, char *dst, int length)
#ifdef ENABLE_TRACING
void cp_trace()
{
syslog(LOG_DEBUG, "Checkpoint trace: %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d...",
logger(LOG_DEBUG, "Checkpoint trace: %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d <- %s:%d...",
cp_file[(cp_index + 15) % 16], cp_line[(cp_index + 15) % 16],
cp_file[(cp_index + 14) % 16], cp_line[(cp_index + 14) % 16],
cp_file[(cp_index + 13) % 16], cp_line[(cp_index + 13) % 16],

View file

@ -21,14 +21,6 @@
#ifndef __TINC_UTILS_H__
#define __TINC_UTILS_H__
#include <ctype.h>
#include "fake-getaddrinfo.h"
#include "fake-getnameinfo.h"
#include "ipv6.h"
#define min(a,b) (((a)<(b))?(a):(b))
#ifdef ENABLE_TRACING
extern volatile int cp_line[];
extern volatile char *cp_file[];