1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Copyright (C) 2018 Samsung Electronics Co., Ltd. 4 */ 5 6 #ifndef __KSMBD_TRANSPORT_TCP_H__ 7 #define __KSMBD_TRANSPORT_TCP_H__ 8 9 int ksmbd_tcp_set_interfaces(char *ifc_list, int ifc_list_sz); 10 struct interface *ksmbd_find_netdev_name_iface_list(char *netdev_name); 11 int ksmbd_tcp_init(void); 12 void ksmbd_tcp_destroy(void); 13 14 #endif /* __KSMBD_TRANSPORT_TCP_H__ */ 15