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
Michael Black
OpenXG-RAN
Commits
93a6d408
Commit
93a6d408
authored
2 years ago
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial web server implementation
parent
21b3484e
Branches unavailable
2023.w22
2023.w21
2023.w20
2023.w19
2023.w18
2023.w18b
2023.w16
2023.w15
2023.w14
2023.w13
2023.w12
2023.w11
2023.w11b
2023.w10
2023.w10b
2023.w09
2023.w08
2023.w08b
2023.w07
2023.w06
2023.w05
2023.w03
2023.w02
2022.w51
2022.w50
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
common/utils/websrv/websrv_noforms.c
common/utils/websrv/websrv_noforms.c
+2
-0
common/utils/websrv/websrv_noforms.h
common/utils/websrv/websrv_noforms.h
+2
-1
No files found.
common/utils/websrv/websrv_noforms.c
View file @
93a6d408
...
...
@@ -37,6 +37,7 @@
#include "common/utils/websrv/websrv_noforms.h"
#include <common/utils/assertions.h>
#define MAX_LAYER 8
/* replacement for xforms function used in xforms softscope */
...
...
@@ -53,6 +54,7 @@ typedef struct {
FL_OBJECT
*
websrv_fl_add_xyplot
(
int
t
,
FL_Coord
x
,
FL_Coord
y
,
FL_Coord
w
,
FL_Coord
h
,
const
char
*
label
)
{
FL_OBJECT
*
obj
;
obj
=
(
FL_OBJECT
*
)
calloc
(
1
,
sizeof
(
FL_OBJECT
));
AssertFatal
((
obj
!=
NULL
),
"Cannot allocate scope object for %s
\n
"
,
(
label
!=
NULL
)
?
label
:
"??"
);
if
(
obj
)
{
...
...
This diff is collapsed.
Click to expand it.
common/utils/websrv/websrv_noforms.h
View file @
93a6d408
...
...
@@ -1726,7 +1726,6 @@ FL_EXPORT int fl_get_drawmode(void)
#define fl_set_linestyle fl_linestyle
#define fl_set_drawmode fl_drawmode
/*
* Interfaces
*/
...
...
@@ -2260,6 +2259,7 @@ FL_EXPORT FL_HANDLE_CANVAS fl_add_canvas_handler(FL_OBJECT *ob, int ev, FL_HANDL
return
NULL
;
};
FL_EXPORT
Window
fl_get_canvas_id
(
FL_OBJECT
*
ob
)
{
return
NULL
;
...
...
@@ -2430,6 +2430,7 @@ FL_EXPORT FL_XYPLOT_SYMBOL fl_set_xyplot_symbol(FL_OBJECT *ob, int id, FL_XYPLOT
};
#endif
/* FL_XYPLOT_H */
/*----------------------------------------------------------------------*/
/* new functions for interfacing with webserver */
...
...
This diff is collapsed.
Click to expand it.
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