iodine/src/common.h

71 lines
1.9 KiB
C
Raw Normal View History

2007-02-04 17:22:55 +02:00
/*
2009-01-04 01:27:21 +02:00
* Copyright (c) 2006-2009 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
2007-02-04 17:22:55 +02:00
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef __COMMON_H__
#define __COMMON_H__
2007-06-10 21:54:35 +03:00
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
2007-02-04 19:00:20 +02:00
#ifndef MAX
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif
#define QUERY_NAME_SIZE 256
#if defined IP_RECVDSTADDR
# define DSTADDR_SOCKOPT IP_RECVDSTADDR
2008-12-25 18:56:13 +02:00
# define dstaddr(x) ((struct in_addr *) CMSG_DATA(x))
#elif defined IP_PKTINFO
# define DSTADDR_SOCKOPT IP_PKTINFO
# define dstaddr(x) (&(((struct in_pktinfo *)(CMSG_DATA(x)))->ipi_addr))
#endif
struct packet
{
int len; /* Total packet length */
int sentlen; /* Length of chunk currently transmitted */
int offset; /* Current offset */
char data[64*1024]; /* The data */
2008-12-06 21:08:14 +02:00
char seqno; /* The packet sequence number */
char fragment; /* Fragment index */
};
2007-02-04 17:22:55 +02:00
struct query {
char name[QUERY_NAME_SIZE];
2009-01-03 22:13:31 +02:00
unsigned short type;
unsigned short id;
struct in_addr destination;
2007-02-04 17:22:55 +02:00
struct sockaddr from;
int fromlen;
};
int open_dns(int, in_addr_t);
void close_dns(int);
2007-03-01 23:14:51 +02:00
void do_chroot(char *);
2007-03-01 23:19:01 +02:00
void do_detach();
2007-03-01 23:14:51 +02:00
2007-07-12 18:48:05 +03:00
void read_password(char*, size_t);
2008-07-12 14:41:01 +03:00
int check_topdomain(char *);
2007-02-04 17:22:55 +02:00
#endif