subsystems: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all subsystems code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
3702f7220a
commit
5113c1418d
726 changed files with 2931 additions and 2931 deletions
|
@ -4,21 +4,21 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <logging/log.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
LOG_MODULE_REGISTER(net_tcp, CONFIG_NET_TCP_LOG_LEVEL);
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <zephyr.h>
|
||||
#include <random/rand32.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/random/rand32.h>
|
||||
|
||||
#if defined(CONFIG_NET_TCP_ISN_RFC6528)
|
||||
#include <mbedtls/md5.h>
|
||||
#endif
|
||||
#include <net/net_pkt.h>
|
||||
#include <net/net_context.h>
|
||||
#include <net/udp.h>
|
||||
#include <zephyr/net/net_pkt.h>
|
||||
#include <zephyr/net/net_context.h>
|
||||
#include <zephyr/net/udp.h>
|
||||
#include "ipv4.h"
|
||||
#include "ipv6.h"
|
||||
#include "connection.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue