note about assertion actually failing
[oweals/gnunet.git] / src / transport / gnunet-service-transport_plugins.c
index 9c30444508297cab9e316122c3da8b1cafc386df..c6c5e04442e4bf2c6360c398bc48ff6910c32b56 100644 (file)
@@ -14,6 +14,8 @@
  
   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
 */
 
 /**
@@ -104,7 +106,7 @@ plugin_env_update_distance (void *cls,
  * @param addrlen length of the @a addr
  * @return type of the network @a addr belongs to
  */
-static enum GNUNET_ATS_Network_Type
+static enum GNUNET_NetworkType
 plugin_env_address_to_type (void *cls,
                             const struct sockaddr *addr,
                             size_t addrlen)
@@ -112,9 +114,9 @@ plugin_env_address_to_type (void *cls,
   if (NULL == GST_is)
   {
     GNUNET_break(0);
-    return GNUNET_ATS_NET_UNSPECIFIED;
+    return GNUNET_NT_UNSPECIFIED;
   }
-  return GNUNET_ATS_scanner_address_get_type (GST_is,
+  return GNUNET_NT_scanner_get_type (GST_is,
                                               addr,
                                               addrlen);
 }