minor fixes
[oweals/gnunet.git] / src / vpn / gnunet-service-dns-p.h
1 #ifndef GN_DNS_SERVICE_P_H
2 #define GN_DNS_SERVICE_P_H
3
4 #include "gnunet_common.h"
5
6 struct query_packet {
7         struct GNUNET_MessageHeader hdr;
8         
9         unsigned orig_to:32 GNUNET_PACKED; /* The IP-Address, this query was originally sent to */
10         unsigned orig_from:32 GNUNET_PACKED;
11         unsigned src_port:16 GNUNET_PACKED;
12
13         unsigned char data[1]; /* The DNS-Packet */
14         
15 };
16
17 #endif