REST/NAMESTORE: rework API
[oweals/gnunet.git] / src / transport / gnunet-service-transport_ats.c
index 8b3b998c897548bbf62b9d531e9558e84fff8a61..f8756c750804e28547b115ccd71037ec9f866fc3 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
 */
 /**
  * @file transport/gnunet-service-transport_ats.c
@@ -442,7 +444,7 @@ GST_ats_add_inbound_address (const struct GNUNET_HELLO_Address *address,
     GNUNET_break(0);
     return;
   }
-  GNUNET_break (GNUNET_ATS_NET_UNSPECIFIED != prop->scope);
+  GNUNET_break (GNUNET_NT_UNSPECIFIED != prop->scope);
   GNUNET_assert (GNUNET_YES ==
                  GNUNET_HELLO_address_check_option (address,
                                                     GNUNET_HELLO_ADDRESS_INFO_INBOUND));
@@ -461,7 +463,7 @@ GST_ats_add_inbound_address (const struct GNUNET_HELLO_Address *address,
        GNUNET_i2s (&address->peer),
        GST_plugins_a2s (address),
        session,
-       GNUNET_ATS_print_network_type (prop->scope));
+       GNUNET_NT_to_string (prop->scope));
   ar = GNUNET_ATS_address_add (GST_ats,
                                address,
                                session,
@@ -510,7 +512,7 @@ GST_ats_add_address (const struct GNUNET_HELLO_Address *address,
                                                     GNUNET_HELLO_ADDRESS_INFO_INBOUND));
   ai = find_ai_no_session (address);
   GNUNET_assert (NULL == ai);
-  GNUNET_break (GNUNET_ATS_NET_UNSPECIFIED != prop->scope);
+  GNUNET_break (GNUNET_NT_UNSPECIFIED != prop->scope);
 
   /* address seems sane, let's tell ATS */
   LOG (GNUNET_ERROR_TYPE_INFO,