Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Webclient
关于最新的webclient.c中的rt_strcpy问题
发布于 2022-01-10 13:39:52 浏览:1610
订阅该版
目前在使用的最新的webclient.c文件时,编译后遇到rt_strcpy未定义的问题。 之前的版本中还没有使用这个rt_strcpy,但是在最新的版本使用了,就报错了 之前的版本 ```c /* resolve port */ port_ptr = rt_strstr(host_addr + host_addr_len, ":"); if (port_ptr && path_ptr && (port_ptr < path_ptr)) { int port_len = path_ptr - port_ptr - 1; rt_strncpy(port_str, port_ptr + 1, port_len); port_str[port_len] = '\0'; } if (port_ptr && (!path_ptr)) { strcpy(port_str, port_ptr + 1); } /* ipv4 or domain. */ ``` 最新的版本 ```c /* resolve port */ port_ptr = rt_strstr(host_addr + host_addr_len, ":"); if (port_ptr && (!path_ptr || (port_ptr < path_ptr))) { if (!path_ptr) { rt_strcpy(port_str, port_ptr + 1); //就是这句出的问题 } else { int port_len = path_ptr - port_ptr - 1; rt_strncpy(port_str, port_ptr + 1, port_len); port_str[port_len] = '\0'; } } else { port_ptr = RT_NULL; } if (port_ptr && (!path_ptr)) { strcpy(port_str, port_ptr + 1); //但是这个又没有使用rt_strcpy } /* ipv4 or domain. */ ``` 目前是直接用strcpy。 不知道作者在更新的时候有没有编译,应该一编译就会发现的问题吧,希望作者能修改一下,或者应该怎么反馈给作者,目前我只能发在论坛、
查看更多
mysterywolf
认证专家
2022-01-10
https://github.com/mysterywolf
我也发现这个问题了,不知道谁加了一个之前从来没有在rtt里实现过的rt_strcpy函数,我在4.1.0里已经增加了rt_strcpy, 两种方法 要么直接改成strcpy 要么把这个pr抄过去 https://github.com/RT-Thread/rt-thread/pull/5496/files#diff-bab66a544603b7903acd7110bd5d2c49a798ac03516f718639b74760bdb2fce5L461
3
个回答
默认排序
按发布时间排序
chenyingchun
2022-01-10
这家伙很懒,什么也没写!
楼主可以试着提PR
bernard
2022-01-11
这家伙很懒,什么也没写!
多来一起提PR吧
撰写答案
登录
注册新账号
关注者
0
被浏览
1.6k
关于作者
Dwyer
这家伙很懒,什么也没写!
提问
30
回答
17
被采纳
0
关注TA
发私信
相关问题
1
AT组件连接BC26并使用Webclient软件包GET方式请求失败
2
webclient sal_sock每次send 内存就多占几十字 咋排查
3
webclient使用疑惑 ,post上传数据无效,get下载数据
4
w5500通信不稳定。
5
webclient软件包get接口,等不到response header?
6
webclient使用的建議
7
基于官方 webclient 的 http client
8
stm32使用webclient+mbedtls实现get请求及post太慢
9
Webclient无法下载局域网内的文件
10
webclient的post file的sample,需开启哪个文件系统支持
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
ulog 日志 LOG_HEX 输出时间改为本地日期时间
2
在RT-Thread Studio中构建前执行python命令
3
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
4
CherryUSB开发笔记(一):FSDEV USB IP核的 HID Remote WakeUp (USB HID 远程唤醒) 2025-01-18 V1.1
5
RT-thread 缩写字典
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
PWM
cubemx
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
7
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
xusiwei1236
4
个答案
1
次被采纳
张世争
1
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
2
次点赞
Ghost_Girls
1
篇文章
6
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部