Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
16fc6028
Commit
16fc6028
authored
Apr 26, 2022
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix empty array format
parent
2051e652
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
common/utils/websrv/websrv.c
common/utils/websrv/websrv.c
+3
-2
openair1/SIMULATION/TOOLS/random_channel.c
openair1/SIMULATION/TOOLS/random_channel.c
+4
-2
No files found.
common/utils/websrv/websrv.c
View file @
16fc6028
...
...
@@ -223,7 +223,7 @@ void websrv_gettbldata_response(struct _u_response * response,webdatadef_t * wda
}
json_array_append_new
(
jdata
,
jline
);
}
json_t
*
jbody
=
json_pack
(
"{s:[
o],s:{s:o,s:o}}"
,
"display"
,
json_null
()
,
"table"
,
"columns"
,
jcols
,
"rows"
,
jdata
);
json_t
*
jbody
=
json_pack
(
"{s:[
],s:{s:o,s:o}}"
,
"display"
,
"table"
,
"columns"
,
jcols
,
"rows"
,
jdata
);
websrv_jbody
(
response
,
jbody
);
}
...
...
@@ -472,7 +472,8 @@ int websrv_processwebfunc(struct _u_response * response, cmdparser_t * modulestr
websrv_gettbldata_response
(
response
,
&
wdata
);
}
else
{
websrv_printf_start
(
response
,
16384
);
cmd
->
cmdfunc
(
cmd
->
cmdname
,
websrvparams
.
dbglvl
,
websrv_printf
);
char
*
sptr
=
index
(
cmd
->
cmdname
,
' '
);
cmd
->
cmdfunc
((
sptr
==
NULL
)
?
cmd
->
cmdname
:
sptr
,
websrvparams
.
dbglvl
,
websrv_printf
);
if
(
cmd
->
cmdflags
&
TELNETSRV_CMDFLAG_PRINTWEBTBLDATA
)
websrv_printf_tbl_end
(
200
);
else
...
...
openair1/SIMULATION/TOOLS/random_channel.c
View file @
16fc6028
...
...
@@ -49,8 +49,10 @@ static int channelmod_modify_cmd(char *buff, int debug, telnet_printfunc_t prnt)
static
int
channelmod_print_help
(
char
*
buff
,
int
debug
,
telnet_printfunc_t
prnt
);
static
telnetshell_cmddef_t
channelmod_cmdarray
[]
=
{
{
"help"
,
""
,
channelmod_print_help
,{
NULL
},
0
,
NULL
},
{
"show"
,
"<predef,current>"
,
channelmod_show_cmd
,{
NULL
},
0
,
NULL
},
{
"modify"
,
"<channelid> <param> <value>"
,
channelmod_modify_cmd
,{
NULL
},
0
,
NULL
},
{
"show"
,
"<predef,current>"
,
channelmod_show_cmd
,{
NULL
},
TELNETSRV_CMDFLAG_TELNETONLY
,
NULL
},
{
"show predef"
,
""
,
channelmod_show_cmd
,{
NULL
},
TELNETSRV_CMDFLAG_WEBSRVONLY
,
NULL
},
{
"show current"
,
""
,
channelmod_show_cmd
,{
NULL
},
TELNETSRV_CMDFLAG_WEBSRVONLY
,
NULL
},
{
"modify"
,
"<channelid> <param> <value>"
,
channelmod_modify_cmd
,{
NULL
},
TELNETSRV_CMDFLAG_TELNETONLY
,
NULL
},
{
""
,
""
,
NULL
,{
NULL
},
0
,
NULL
},
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment