From 38217347c50c56ca4eb8b427b145faf328a1c0d0 Mon Sep 17 00:00:00 2001 From: Martine Lenders <mail@martine-lenders.eu> Date: Thu, 27 Oct 2016 12:25:49 +0200 Subject: [PATCH] conn: add deprecation note --- sys/include/net/conn.h | 1 + sys/include/net/conn/ip.h | 1 + sys/include/net/conn/tcp.h | 1 + sys/include/net/conn/udp.h | 1 + 4 files changed, 4 insertions(+) diff --git a/sys/include/net/conn.h b/sys/include/net/conn.h index b6b96c39dc..8577d746ca 100644 --- a/sys/include/net/conn.h +++ b/sys/include/net/conn.h @@ -9,6 +9,7 @@ /** * @defgroup net_conn Application connection API * @ingroup net + * @deprecated Please use @ref net_sock instead * @brief Provides a minimal common API for applications to connect to the * different network stacks. * diff --git a/sys/include/net/conn/ip.h b/sys/include/net/conn/ip.h index 4df3e8626b..cdd24395f8 100644 --- a/sys/include/net/conn/ip.h +++ b/sys/include/net/conn/ip.h @@ -9,6 +9,7 @@ /** * @defgroup net_conn_ip Raw IPv4/IPv6 connections * @ingroup net_conn + * @deprecated Please use @ref net_sock_ip instead * @brief Connection submodule for raw IPv4/IPv6 connections * @{ * diff --git a/sys/include/net/conn/tcp.h b/sys/include/net/conn/tcp.h index aa02fa7e04..7e5a17f6b9 100644 --- a/sys/include/net/conn/tcp.h +++ b/sys/include/net/conn/tcp.h @@ -9,6 +9,7 @@ /** * @defgroup net_conn_tcp TCP connections * @ingroup net_conn + * @deprecated Please use @ref net_sock_tcp instead * @brief Connection submodule for TCP connections * @{ * diff --git a/sys/include/net/conn/udp.h b/sys/include/net/conn/udp.h index b59ac07ce4..d1f6102ede 100644 --- a/sys/include/net/conn/udp.h +++ b/sys/include/net/conn/udp.h @@ -9,6 +9,7 @@ /** * @defgroup net_conn_udp UDP connections * @ingroup net_conn + * @deprecated Please use @ref net_sock_udp instead * @brief Connection submodule for UDP connections * @{ * -- GitLab