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
Nov 14, 2022
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial web server implementation
parent
21b3484e
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
)
{
...
...
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 */
...
...
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