renamed file as per policy
authorPhilipp Tölke <toelke@in.tum.de>
Tue, 26 Oct 2010 13:55:54 +0000 (13:55 +0000)
committerPhilipp Tölke <toelke@in.tum.de>
Tue, 26 Oct 2010 13:55:54 +0000 (13:55 +0000)
src/block/plugin_block_dns.c
src/include/block_dns.h [new file with mode: 0644]
src/include/gnunet_block_dns.h [deleted file]
src/vpn/gnunet-service-dns.c

index e0e970e080093520123161ed6728f7f34f9fb8a6..1e1a577fc416f9b4cc57af4a93fcf59d22113cf0 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "platform.h"
 #include "plugin_block.h"
-#include "gnunet_block_dns.h"
+#include "block_dns.h"
 
 #define DEBUG_DHT GNUNET_NO
 
diff --git a/src/include/block_dns.h b/src/include/block_dns.h
new file mode 100644 (file)
index 0000000..d8f3fa5
--- /dev/null
@@ -0,0 +1,49 @@
+#ifndef _GNVPN_BLOCKDNS_H_
+#define _GNVPN_BLOCKDNS_H_
+
+#include "gnunet_common.h"
+
+/**
+ * Bitmask describing what ip-services are supported by services
+ * It is 2 bytes long
+ */
+struct GNUNET_ipservices {
+  unsigned UDP:1 GNUNET_PACKED;
+  unsigned TCP:1 GNUNET_PACKED;
+  unsigned RESERVED:14 GNUNET_PACKED;
+};
+
+/**
+ * This is the structure describing an dns-record such as www.gnunet.
+ */
+struct GNUNET_DNS_Record
+{
+  /**
+   * The peer providing this service
+   */
+  struct GNUNET_PeerIdentity peer;
+
+  /**
+   * The descriptor for the service
+   * (a peer may provide more than one service)
+   */
+  GNUNET_HashCode service_descriptor;
+
+  /**
+   * What connection-types (UDP, TCP, ...) are supported by the service
+   */
+  struct GNUNET_ipservices connectiontypes;
+
+  /**
+   * The length of the name of the service
+   */
+  unsigned char namelen;
+
+  /**
+   * The name of the service
+   * This is namelen bytes
+   */
+  char name[1];
+};
+
+#endif
diff --git a/src/include/gnunet_block_dns.h b/src/include/gnunet_block_dns.h
deleted file mode 100644 (file)
index d8f3fa5..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#ifndef _GNVPN_BLOCKDNS_H_
-#define _GNVPN_BLOCKDNS_H_
-
-#include "gnunet_common.h"
-
-/**
- * Bitmask describing what ip-services are supported by services
- * It is 2 bytes long
- */
-struct GNUNET_ipservices {
-  unsigned UDP:1 GNUNET_PACKED;
-  unsigned TCP:1 GNUNET_PACKED;
-  unsigned RESERVED:14 GNUNET_PACKED;
-};
-
-/**
- * This is the structure describing an dns-record such as www.gnunet.
- */
-struct GNUNET_DNS_Record
-{
-  /**
-   * The peer providing this service
-   */
-  struct GNUNET_PeerIdentity peer;
-
-  /**
-   * The descriptor for the service
-   * (a peer may provide more than one service)
-   */
-  GNUNET_HashCode service_descriptor;
-
-  /**
-   * What connection-types (UDP, TCP, ...) are supported by the service
-   */
-  struct GNUNET_ipservices connectiontypes;
-
-  /**
-   * The length of the name of the service
-   */
-  unsigned char namelen;
-
-  /**
-   * The name of the service
-   * This is namelen bytes
-   */
-  char name[1];
-};
-
-#endif
index 7b1ebab698e6467a8f141128cd706bdf69fb5f53..1ad3c8784f69d85162d45b6be1fba2235e277c96 100644 (file)
@@ -35,7 +35,7 @@
 #include "gnunet-dns-parser.h"
 #include "gnunet_dht_service.h"
 #include "gnunet_block_lib.h"
-#include "gnunet_block_dns.h"
+#include "block_dns.h"
 
 struct dns_cls {
        struct GNUNET_SCHEDULER_Handle *sched;