remove gversion.
[oweals/gnunet.git] / src / include / gnunet_applications.h
index d9df78d337d46175099b9a8061d2150f6a8b91f3..1e2ac59f7127ba65ef690d17bea19c6e771f6ab0 100644 (file)
@@ -1,27 +1,32 @@
 /*
      This file is part of GNUnet.
-     (C) 2011 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2011, 2016 GNUnet e.V.
 
-     GNUnet is free software; you can redistribute it and/or modify
-     it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 2, or (at your
-     option) any later version.
+     GNUnet is free software: you can redistribute it and/or modify it
+     under the terms of the GNU Affero General Public License as published
+     by the Free Software Foundation, either version 3 of the License,
+     or (at your option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
+     Affero General Public License for more details.
 
-     You should have received a copy of the GNU General Public License
-     along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
-*/
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+     SPDX-License-Identifier: AGPL3.0-or-later
+ */
 
 /**
- * @file include/gnunet_applications.h
- * @brief constants for network applications operating on top of the MESH service
  * @author Christian Grothoff
+ *
+ * @file
+ * Constants for network applications operating on top of the CADET service
+ *
+ * @defgroup applications  CADET application definitions
+ * Constants for network applications operating on top of the CADET service.
+ * @{
  */
 
 #ifndef GNUNET_APPLICATIONS_H
@@ -46,44 +51,74 @@ extern "C"
 #define GNUNET_APPLICATION_TYPE_TEST 1
 
 /**
- * Internet DNS resolution (external DNS gateway).
+ * Transfer of blocks for non-anonymmous file-sharing.
  */
-#define GNUNET_APPLICATION_TYPE_INTERNET_RESOLVER 2
+#define GNUNET_APPLICATION_PORT_FS_BLOCK_TRANSFER "fs-block"
 
 /**
- * Internet HTTP gateway (port 80).
+ * Transfer of blocks for random peer sampling.
  */
-#define GNUNET_APPLICATION_TYPE_INTERNET_HTTP_GATEWAY 3
+#define GNUNET_APPLICATION_PORT_RPS "rps"
 
 /**
- * Internet HTTPS gateway (port 443).
+ * Internet DNS resolution (external DNS gateway).  This is a "well-known"
+ * service a peer may offer over CADET where the port is the hash of this
+ * string.
  */
-#define GNUNET_APPLICATION_TYPE_INTERNET_HTTPS_GATEWAY 4
+#define GNUNET_APPLICATION_PORT_INTERNET_RESOLVER "exit-dns"
 
 /**
- * Internet TCP gateway (any port).
+ * Internet IPv4 gateway (any TCP/UDP/ICMP).
  */
-#define GNUNET_APPLICATION_TYPE_INTERNET_TCP_GATEWAY 5
+#define GNUNET_APPLICATION_PORT_IPV4_GATEWAY "exit-ipv4"
 
 /**
- * Internet UDP gateway (any port).
+ * Internet IPv6 gateway (any TCP/UDP/ICMP).
  */
-#define GNUNET_APPLICATION_TYPE_INTERNET_UDP_GATEWAY 6
+#define GNUNET_APPLICATION_PORT_IPV6_GATEWAY "exit-ipv6"
 
 /**
- * GNUnet VPN Search Engine (searches HTTP sites hosted within GNUnet) [example]
+ * Internet exit regex prefix. Consisting of application ID, followed
+ * by version and padding.
  */
-#define GNUNET_APPLICATION_TYPE_GNUNET_SEARCH 7
+#define GNUNET_APPLICATION_TYPE_EXIT_REGEX_PREFIX "GNUNET-VPN-VER-0001-"
 
 /**
- * Internet IPv4 gateway (any TCP/UDP/ICMP).
+ * Consensus.
+ *
+ * @deprecated
  */
-#define GNUNET_APPLICATION_TYPE_IPV4_GATEWAY 16
+#define GNUNET_APPLICATION_TYPE_CONSENSUS 18
 
 /**
- * Internet IPv6 gateway (any TCP/UDP/ICMP).
+ * Set. Used for two-peer set operations implemented using stream.
+ * @deprecated
+ */
+#define GNUNET_APPLICATION_TYPE_SET 19
+
+/**
+ * Conversation control data.
+ * @deprecated
+ */
+#define GNUNET_APPLICATION_TYPE_CONVERSATION_CONTROL 21
+
+/**
+ * Conversation audio data.
+ * @deprecated
+ */
+#define GNUNET_APPLICATION_TYPE_CONVERSATION_AUDIO 22
+
+/**
+ * MQTT publish-subscribe.
+ * @deprecated
  */
-#define GNUNET_APPLICATION_TYPE_IPV6_GATEWAY 17
+#define GNUNET_APPLICATION_TYPE_MQTT 23
+
+/**
+ * Multicast data.
+ * @deprecated
+ */
+#define GNUNET_APPLICATION_TYPE_MULTICAST 26
 
 
 #if 0                           /* keep Emacsens' auto-indent happy */
@@ -95,4 +130,7 @@ extern "C"
 
 /* ifndef GNUNET_APPLICATIONS_H */
 #endif
+
+/** @} */  /* end of group */
+
 /* end of gnunet_applications.h */