~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_net.h

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2000 MySQL AB
2
 
 
3
 
   This program is free software; you can redistribute it and/or modify
4
 
   it under the terms of the GNU General Public License as published by
5
 
   the Free Software Foundation; version 2 of the License.
6
 
 
7
 
   This program is distributed in the hope that it will be useful,
8
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
   GNU General Public License for more details.
11
 
 
12
 
   You should have received a copy of the GNU General Public License
13
 
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
 
 
16
 
/*
17
 
  thread safe version of some common functions:
18
 
  my_inet_ntoa
19
 
 
20
 
  This file is also used to make handling of sockets and ioctl()
21
 
  portable accross systems.
22
 
 
23
 
*/
24
 
 
25
 
#ifndef _my_net_h
26
 
#define _my_net_h
27
 
C_MODE_START
28
 
 
29
 
#include <errno.h>
30
 
#ifdef HAVE_SYS_SOCKET_H
31
 
#include <sys/socket.h>
32
 
#endif
33
 
#ifdef HAVE_NETINET_IN_H
34
 
#include <netinet/in.h>
35
 
#endif
36
 
#ifdef HAVE_ARPA_INET_H
37
 
#include <arpa/inet.h>
38
 
#endif
39
 
#ifdef HAVE_POLL
40
 
#include <sys/poll.h>
41
 
#endif
42
 
#ifdef HAVE_SYS_IOCTL_H
43
 
#include <sys/ioctl.h>
44
 
#endif
45
 
 
46
 
#if !defined(HAVE_BROKEN_NETINET_INCLUDES)
47
 
#include <netinet/in_systm.h>
48
 
#include <netinet/in.h>
49
 
#include <netinet/ip.h>
50
 
#include <netinet/tcp.h>
51
 
#endif
52
 
 
53
 
C_MODE_END
54
 
#endif