1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (c) 2024 Huawei Device Co., Ltd. 4 * 5 * Network and Application-driven Transport Augmentation (NATA). 6 * Authors: yangyanjun 7 */ 8 #ifndef _INET_CONNECTION_NATA_H 9 #define _INET_CONNECTION_NATA_H 10 #if defined(CONFIG_TCP_NATA_URC) || defined(CONFIG_TCP_NATA_STL) 11 #include <net/sock.h> 12 13 bool nata_thin_stream_check(struct sock *sk); 14 15 #endif 16 #endif /* _INET_CONNECTION_NATA_H */ 17