mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 08:06:32 +00:00
新增http server (#265)
* 1.修复了当传入ahci驱动的缓冲区地址为用户缓冲区时,产生的内存越界问题.(采用分配内核缓冲区的方式临时解决) 2.新增http server * 把libssl-dev添加到bootstrap.sh * http_server增加对父级相对路径的安全检查,防止访问系统内的其他文件 * 检查空指针情况 * 解决由于链接时,crt*.o未按照升序排列导致init段链接错误的问题
This commit is contained in:
28
user/dadk/config/http_server-0.1.0.dadk
Normal file
28
user/dadk/config/http_server-0.1.0.dadk
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "Http_Server",
|
||||
"version": "0.1.0",
|
||||
"description": "一个简单的http server",
|
||||
"task_type": {
|
||||
"BuildFromSource": {
|
||||
"Local": {
|
||||
"path": "apps/http_server"
|
||||
}
|
||||
}
|
||||
},
|
||||
"depends": [
|
||||
{
|
||||
"name": "relibc",
|
||||
"version": "0.1.0"
|
||||
}
|
||||
],
|
||||
"build": {
|
||||
"build_command": "make"
|
||||
},
|
||||
"install": {
|
||||
"in_dragonos_path": "/bin"
|
||||
},
|
||||
"clean": {
|
||||
"clean_command": "make clean"
|
||||
},
|
||||
"envs": []
|
||||
}
|
Reference in New Issue
Block a user