[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r13400 - in gnunet/src: block include vpn
From: |
gnunet |
Subject: |
[GNUnet-SVN] r13400 - in gnunet/src: block include vpn |
Date: |
Tue, 26 Oct 2010 15:55:54 +0200 |
Author: toelke
Date: 2010-10-26 15:55:54 +0200 (Tue, 26 Oct 2010)
New Revision: 13400
Added:
gnunet/src/include/block_dns.h
Removed:
gnunet/src/include/gnunet_block_dns.h
Modified:
gnunet/src/block/plugin_block_dns.c
gnunet/src/vpn/gnunet-service-dns.c
Log:
renamed file as per policy
Modified: gnunet/src/block/plugin_block_dns.c
===================================================================
--- gnunet/src/block/plugin_block_dns.c 2010-10-26 13:10:36 UTC (rev 13399)
+++ gnunet/src/block/plugin_block_dns.c 2010-10-26 13:55:54 UTC (rev 13400)
@@ -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
Copied: gnunet/src/include/block_dns.h (from rev 13399,
gnunet/src/include/gnunet_block_dns.h)
===================================================================
--- gnunet/src/include/block_dns.h (rev 0)
+++ gnunet/src/include/block_dns.h 2010-10-26 13:55:54 UTC (rev 13400)
@@ -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
Deleted: gnunet/src/include/gnunet_block_dns.h
===================================================================
--- gnunet/src/include/gnunet_block_dns.h 2010-10-26 13:10:36 UTC (rev
13399)
+++ gnunet/src/include/gnunet_block_dns.h 2010-10-26 13:55:54 UTC (rev
13400)
@@ -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
Modified: gnunet/src/vpn/gnunet-service-dns.c
===================================================================
--- gnunet/src/vpn/gnunet-service-dns.c 2010-10-26 13:10:36 UTC (rev 13399)
+++ gnunet/src/vpn/gnunet-service-dns.c 2010-10-26 13:55:54 UTC (rev 13400)
@@ -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;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r13400 - in gnunet/src: block include vpn,
gnunet <=