You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
489 B
30 lines
489 B
5 days ago
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2015-02-17 Bernard First version
|
||
|
* 2016-05-05 Bernard rename dfs_lwip to dfs_net.
|
||
|
*/
|
||
|
|
||
|
#ifndef DFS_NET_H__
|
||
|
#define DFS_NET_H__
|
||
|
|
||
|
#include <dfs_file.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
const struct dfs_file_ops* dfs_net_get_fops(void);
|
||
|
int dfs_net_getsocket(int fd);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|