mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-18 12:56:29 +00:00
1efe6686fc
swiftc(1) requires every -D option to be prefixed with -Xcc, which is not easy to achieve using autoconf. Now instead of setting configuration macros like HAVE_LSEEK64 on the command line using -D, they are defined in config.h, which is generated by ./configure, ignored by Git, and included by all headers and source files that use any configuration macro. The dependency on Makefile has been replaced with a dependency on Makefile.in and config.h, which helps avoid some redundant full recompiles after running ./configure, because the configure script does not overwrit config.h if its content does not change.
72 lines
2.8 KiB
C
72 lines
2.8 KiB
C
/*
|
|
Copyright (C) 2012 Serval Project Inc.
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __SERVAL_DNA__NET_H
|
|
#define __SERVAL_DNA__NET_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <sys/types.h> // for size_t, ssize_t
|
|
#include <sys/socket.h> // for struct sockaddr, socklen_t
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h> // for struct in_addr
|
|
#endif
|
|
|
|
#if !defined(FORASTERISK) && !defined(s_addr)
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h> // for in_addr_t
|
|
#else
|
|
typedef uint32_t in_addr_t;
|
|
struct in_addr {
|
|
in_addr_t s_addr;
|
|
};
|
|
#endif
|
|
#endif
|
|
|
|
#include "whence.h" // for __WHENCE__ and struct __sourceloc
|
|
|
|
/* Build a struct in_addr from a host-byte-order integer.
|
|
*
|
|
* @author Andrew Bettison <andrew@servalproject.com>
|
|
*/
|
|
struct in_addr hton_in_addr(in_addr_t);
|
|
|
|
#define set_nonblock(fd) (_set_nonblock(fd, __WHENCE__))
|
|
#define set_block(fd) (_set_block(fd, __WHENCE__))
|
|
#define read_nonblock(fd,buf,len) (_read_nonblock(fd, buf, len, __WHENCE__))
|
|
#define write_all(fd,buf,len) (_write_all(fd, buf, len, __WHENCE__))
|
|
#define writev_all(fd,iov,cnt) (_writev_all(fd, (iov), (cnt), __WHENCE__))
|
|
#define write_nonblock(fd,buf,len) (_write_nonblock(fd, buf, len, __WHENCE__))
|
|
#define write_all_nonblock(fd,buf,len) (_write_all_nonblock(fd, buf, len, __WHENCE__))
|
|
#define write_str(fd,str) (_write_str(fd, str, __WHENCE__))
|
|
#define write_str_nonblock(fd,str) (_write_str_nonblock(fd, str, __WHENCE__))
|
|
|
|
int _set_nonblock(int fd, struct __sourceloc __whence);
|
|
int _set_block(int fd, struct __sourceloc __whence);
|
|
ssize_t _read_nonblock(int fd, void *buf, size_t len, struct __sourceloc __whence);
|
|
ssize_t _write_all(int fd, const void *buf, size_t len, struct __sourceloc __whence);
|
|
ssize_t _write_nonblock(int fd, const void *buf, size_t len, struct __sourceloc __whence);
|
|
ssize_t _write_all_nonblock(int fd, const void *buf, size_t len, struct __sourceloc __whence);
|
|
ssize_t _writev_all(int fd, const struct iovec *iov, int iovcnt, struct __sourceloc __whence);
|
|
ssize_t _write_str(int fd, const char *str, struct __sourceloc __whence);
|
|
ssize_t _write_str_nonblock(int fd, const char *str, struct __sourceloc __whence);
|
|
|
|
#endif // __SERVAL_DNA__NET_H
|