Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFS Gluon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
firmware
FFS Gluon
Commits
edff676d
Unverified
Commit
edff676d
authored
3 years ago
by
David Bauer
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2216 from AiyionPrime/meshvpn_core_respondd_simple_tc
gluon-mesh-vpn-core: respondd bandwidth_limit
parents
16c5c641
c71959df
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/gluon-mesh-vpn-core/src/Makefile
+1
-1
1 addition, 1 deletion
package/gluon-mesh-vpn-core/src/Makefile
package/gluon-mesh-vpn-core/src/respondd.c
+51
-0
51 additions, 0 deletions
package/gluon-mesh-vpn-core/src/respondd.c
with
52 additions
and
1 deletion
package/gluon-mesh-vpn-core/src/Makefile
+
1
−
1
View file @
edff676d
...
@@ -3,4 +3,4 @@ all: respondd.so
...
@@ -3,4 +3,4 @@ all: respondd.so
CFLAGS
+=
-Wall
-Werror-implicit-function-declaration
CFLAGS
+=
-Wall
-Werror-implicit-function-declaration
respondd.so
:
respondd.c
respondd.so
:
respondd.c
$(
CC
)
$(
CPPFLAGS
)
$(
CFLAGS
)
$(
LDFLAGS
)
-shared
-fPIC
-D_GNU_SOURCE
-o
$@
$^
$(
LDLIBS
)
-lgluonutil
$(
CC
)
$(
CPPFLAGS
)
$(
CFLAGS
)
$(
LDFLAGS
)
-shared
-fPIC
-D_GNU_SOURCE
-o
$@
$^
$(
LDLIBS
)
-lgluonutil
-luci
This diff is collapsed.
Click to expand it.
package/gluon-mesh-vpn-core/src/respondd.c
+
51
−
0
View file @
edff676d
...
@@ -23,13 +23,63 @@
...
@@ -23,13 +23,63 @@
#include
<respondd.h>
#include
<respondd.h>
#include
<stdbool.h>
#include
<stdio.h>
#include
<stdio.h>
#include
<string.h>
#include
<string.h>
#include
<unistd.h>
#include
<json-c/json.h>
#include
<json-c/json.h>
#include
<libgluonutil.h>
#include
<libgluonutil.h>
#include
<uci.h>
static
struct
json_object
*
get_bandwidth_limit
(
void
)
{
bool
enabled
=
false
;
int
egress
=
-
1
;
int
ingress
=
-
1
;
struct
json_object
*
ret
=
json_object_new_object
();
struct
uci_context
*
ctx
=
uci_alloc_context
();
if
(
!
ctx
)
goto
disabled
;
ctx
->
flags
&=
~
UCI_FLAG_STRICT
;
struct
uci_package
*
p
;
if
(
uci_load
(
ctx
,
"gluon"
,
&
p
))
goto
disabled
;
struct
uci_section
*
s
=
uci_lookup_section
(
ctx
,
p
,
"mesh_vpn"
);
if
(
!
s
)
goto
disabled
;
const
char
*
enabled_str
=
uci_lookup_option_string
(
ctx
,
s
,
"limit_enabled"
);
if
(
enabled_str
&&
strcmp
(
enabled_str
,
"1"
))
goto
disabled
;
enabled
=
true
;
const
char
*
egress_str
=
uci_lookup_option_string
(
ctx
,
s
,
"limit_egress"
);
if
(
strcmp
(
egress_str
,
"-"
))
egress
=
atoi
(
egress_str
);
const
char
*
ingress_str
=
uci_lookup_option_string
(
ctx
,
s
,
"limit_ingress"
);
if
(
strcmp
(
ingress_str
,
"-"
))
ingress
=
atoi
(
ingress_str
);
if
(
egress
>=
0
)
json_object_object_add
(
ret
,
"egress"
,
json_object_new_int
(
egress
));
if
(
ingress
>=
0
)
json_object_object_add
(
ret
,
"ingress"
,
json_object_new_int
(
ingress
));
disabled:
if
(
ctx
)
uci_free_context
(
ctx
);
json_object_object_add
(
ret
,
"enabled"
,
json_object_new_boolean
(
enabled
));
return
ret
;
}
char
*
read_stdout
(
const
char
*
command
)
{
char
*
read_stdout
(
const
char
*
command
)
{
FILE
*
f
=
popen
(
command
,
"r"
);
FILE
*
f
=
popen
(
command
,
"r"
);
if
(
!
f
)
if
(
!
f
)
...
@@ -89,6 +139,7 @@ static struct json_object * respondd_provider_nodeinfo(void) {
...
@@ -89,6 +139,7 @@ static struct json_object * respondd_provider_nodeinfo(void) {
struct
json_object
*
network
=
json_object_new_object
();
struct
json_object
*
network
=
json_object_new_object
();
struct
json_object
*
mesh_vpn
=
json_object_new_object
();
struct
json_object
*
mesh_vpn
=
json_object_new_object
();
json_object_object_add
(
mesh_vpn
,
"bandwidth_limit"
,
get_bandwidth_limit
());
json_object_object_add
(
mesh_vpn
,
"provider"
,
get_active_vpn_provider
());
json_object_object_add
(
mesh_vpn
,
"provider"
,
get_active_vpn_provider
());
json_object_object_add
(
mesh_vpn
,
"enabled"
,
get_mesh_vpn_enabled
());
json_object_object_add
(
mesh_vpn
,
"enabled"
,
get_mesh_vpn_enabled
());
json_object_object_add
(
network
,
"mesh_vpn"
,
mesh_vpn
);
json_object_object_add
(
network
,
"mesh_vpn"
,
mesh_vpn
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment