2006-06-05 16:38:10 +03:00
|
|
|
/*
|
2006-06-05 18:34:32 +03:00
|
|
|
* Copyright (c) 2006 Bjorn Andersson <flex@kryo.se>, Erik Ekman <yarrick@kryo.se>
|
2006-06-05 16:38:10 +03: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 _DNS_H_
|
|
|
|
#define _DNS_H_
|
|
|
|
|
2006-08-12 01:52:36 +03:00
|
|
|
int open_dns(const char *, int, in_addr_t);
|
2006-06-11 22:54:23 +03:00
|
|
|
int dns_settarget(const char*);
|
2006-06-05 16:38:10 +03:00
|
|
|
void close_dns(int);
|
|
|
|
|
2006-06-05 23:05:11 +03:00
|
|
|
int dns_sending();
|
|
|
|
void dns_handle_tun(int, char *, int);
|
2006-06-05 18:13:30 +03:00
|
|
|
void dns_ping(int);
|
2006-06-11 19:13:40 +03:00
|
|
|
void dns_handshake(int);
|
2006-06-05 21:36:34 +03:00
|
|
|
void dns_query(int, int, char *, int);
|
2006-06-05 18:13:30 +03:00
|
|
|
int dns_read(int, char *, int);
|
2006-06-05 17:13:32 +03:00
|
|
|
|
2006-06-11 15:57:29 +03:00
|
|
|
extern struct sockaddr_in peer;
|
|
|
|
|
2006-06-11 22:34:34 +03:00
|
|
|
int dnsd_read(int, struct query*, char *, int);
|
|
|
|
void dnsd_send(int, struct query*, char *, int);
|
2006-06-11 15:57:29 +03:00
|
|
|
|
|
|
|
int dnsd_haspacket();
|
|
|
|
int dnsd_hasack();
|
|
|
|
void dnsd_forceack(int);
|
|
|
|
void dnsd_queuepacket(const char *, const int);
|
|
|
|
|
2006-06-05 17:43:04 +03:00
|
|
|
|
2006-06-05 16:38:10 +03:00
|
|
|
#endif /* _DNS_H_ */
|