Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
fc735381
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
fc735381
编写于
8月 25, 2018
作者:
Lawlieta
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[net][sal/at] Add components C++ support
上级
192b1775
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
61 addition
and
5 deletion
+61
-5
components/net/at/at_socket/at_socket.h
components/net/at/at_socket/at_socket.h
+8
-0
components/net/at/include/at.h
components/net/at/include/at.h
+7
-0
components/net/sal_socket/impl/af_inet.h
components/net/sal_socket/impl/af_inet.h
+8
-0
components/net/sal_socket/include/dfs_net/dfs_net.h
components/net/sal_socket/include/dfs_net/dfs_net.h
+2
-2
components/net/sal_socket/include/sal.h
components/net/sal_socket/include/sal.h
+8
-0
components/net/sal_socket/include/sal_ipaddr.h
components/net/sal_socket/include/sal_ipaddr.h
+4
-0
components/net/sal_socket/include/sal_netdb.h
components/net/sal_socket/include/sal_netdb.h
+8
-0
components/net/sal_socket/include/sal_socket.h
components/net/sal_socket/include/sal_socket.h
+8
-0
components/net/sal_socket/include/sal_type.h
components/net/sal_socket/include/sal_type.h
+8
-0
components/net/sal_socket/src/sal_socket.c
components/net/sal_socket/src/sal_socket.c
+0
-3
未找到文件。
components/net/at/at_socket/at_socket.h
浏览文件 @
fc735381
...
...
@@ -32,6 +32,10 @@
#include <netdb.h>
#include <sys/socket.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#ifndef AT_SOCKET_RECV_BFSZ
#define AT_SOCKET_RECV_BFSZ 512
#endif
...
...
@@ -160,4 +164,8 @@ void at_scoket_device_register(const struct at_device_ops *ops);
#endif
/* RT_USING_SAL */
#ifdef __cplusplus
}
#endif
#endif
/* AT_SOCKET_H__ */
components/net/at/include/at.h
浏览文件 @
fc735381
...
...
@@ -27,6 +27,9 @@
#include <rtthread.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#define AT_SW_VERSION "0.3.0"
#define DBG_ENABLE
...
...
@@ -251,4 +254,8 @@ void at_port_reset(void);
void
at_port_factory_reset
(
void
);
#endif
#ifdef __cplusplus
}
#endif
#endif
/* __AT_H__ */
components/net/sal_socket/impl/af_inet.h
浏览文件 @
fc735381
...
...
@@ -27,6 +27,10 @@
#include <rtthread.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#ifdef SAL_USING_LWIP
/* lwIP protocol family register */
int
lwip_inet_init
(
void
);
...
...
@@ -37,4 +41,8 @@ int lwip_inet_init(void);
int
at_inet_init
(
void
);
#endif
#ifdef __cplusplus
}
#endif
#endif
/* __AF_INET_H__ */
components/net/sal_socket/include/dfs_net/dfs_net.h
浏览文件 @
fc735381
...
...
@@ -26,12 +26,12 @@
#ifndef DFS_NET_H__
#define DFS_NET_H__
#include <dfs_file.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#include <dfs_file.h>
const
struct
dfs_file_ops
*
dfs_net_get_fops
(
void
);
int
dfs_net_getsocket
(
int
fd
);
...
...
components/net/sal_socket/include/sal.h
浏览文件 @
fc735381
...
...
@@ -28,6 +28,10 @@
#include <dfs_file.h>
#include <rtdevice.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#if !defined(socklen_t) && !defined(SOCKLEN_T_DEFINED)
typedef
uint32_t
socklen_t
;
#endif
...
...
@@ -103,4 +107,8 @@ int sal_proto_family_register(const struct proto_family *pf);
int
sal_proto_family_unregister
(
const
struct
proto_family
*
pf
);
struct
proto_family
*
sal_proto_family_find
(
const
char
*
name
);
#ifdef __cplusplus
}
#endif
#endif
/* SAL_H__ */
components/net/sal_socket/include/sal_ipaddr.h
浏览文件 @
fc735381
...
...
@@ -26,6 +26,10 @@
#include "sal_type.h"
#ifdef __cplusplus
extern
"C"
{
#endif
/** IPv4 only: set the IP address given as an u32_t */
#define ip4_addr_set_u32(dest_ipaddr, src_u32) ((dest_ipaddr)->addr = (src_u32))
/** IPv4 only: get the IP address as an u32_t */
...
...
components/net/sal_socket/include/sal_netdb.h
浏览文件 @
fc735381
...
...
@@ -26,6 +26,10 @@
#include <sal_socket.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#define EAI_NONAME 200
#define EAI_SERVICE 201
#define EAI_FAIL 202
...
...
@@ -88,4 +92,8 @@ int sal_getaddrinfo(const char *nodename,
const
struct
addrinfo
*
hints
,
struct
addrinfo
**
res
);
#ifdef __cplusplus
}
#endif
#endif
/* SAL_NETDB_H__ */
components/net/sal_socket/include/sal_socket.h
浏览文件 @
fc735381
...
...
@@ -27,6 +27,10 @@
#include "sal_ipaddr.h"
#ifdef __cplusplus
extern
"C"
{
#endif
#if !defined(socklen_t) && !defined(SOCKLEN_T_DEFINED)
typedef
uint32_t
socklen_t
;
#endif
...
...
@@ -175,4 +179,8 @@ int sal_socket(int domain, int type, int protocol);
int
sal_closesocket
(
int
socket
);
int
sal_ioctlsocket
(
int
socket
,
long
cmd
,
void
*
arg
);
#ifdef __cplusplus
}
#endif
#endif
/* SAL_SOCKET_H__ */
components/net/sal_socket/include/sal_type.h
浏览文件 @
fc735381
...
...
@@ -28,6 +28,10 @@
#include <stdlib.h>
#include <stdint.h>
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
int8_t
err_t
;
typedef
uint8_t
u8_t
;
typedef
int8_t
s8_t
;
...
...
@@ -37,4 +41,8 @@ typedef uint32_t u32_t;
typedef
int32_t
s32_t
;
typedef
uintptr_t
mem_ptr_t
;
#ifdef __cplusplus
}
#endif
#endif
/* SAL_TYPE_H__ */
components/net/sal_socket/src/sal_socket.c
浏览文件 @
fc735381
...
...
@@ -738,7 +738,6 @@ struct hostent *sal_gethostbyname(const char *name)
{
return
hst
;
}
continue
;
}
}
...
...
@@ -759,7 +758,6 @@ int sal_gethostbyname_r(const char *name, struct hostent *ret, char *buf,
{
return
res
;
}
continue
;
}
}
...
...
@@ -796,7 +794,6 @@ int sal_getaddrinfo(const char *nodename,
{
return
ret
;
}
continue
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录