Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
nanahira
Dnsmasq
Commits
c4638f9e
Commit
c4638f9e
authored
Jun 07, 2014
by
Daniel Collins
Committed by
Simon Kelley
Jun 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New DBus methods.
parent
4b34f5d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
0 deletions
+49
-0
CHANGELOG
CHANGELOG
+3
-0
dbus/DBus-interface
dbus/DBus-interface
+8
-0
src/dbus.c
src/dbus.c
+38
-0
No files found.
CHANGELOG
View file @
c4638f9e
...
...
@@ -7,6 +7,9 @@ version 2.72
Fix race condition which could lock up dnsmasq when an
interface goes down and up rapidly. Thanks to Conrad
Kostecki for helping to chase this down.
Add DBus methods SetFilterWin2KOption and SetBogusPrivOption
Thanks to the Smoothwall project for the patch.
version 2.71
...
...
dbus/DBus-interface
View file @
c4638f9e
...
...
@@ -40,6 +40,14 @@ ClearCache
Returns nothing. Clears the domain name cache and re-reads
/etc/hosts. The same as sending dnsmasq a HUP signal.
SetFilterWin2KOption
--------------------
Takes boolean, sets or resets the --filterwin2k option.
SetBogusPrivOption
------------------
Takes boolean, sets or resets the --bogus-priv option.
SetServers
----------
Returns nothing. Takes a set of arguments representing the new
...
...
src/dbus.c
View file @
c4638f9e
...
...
@@ -44,6 +44,12 @@ const char* introspection_xml_template =
" <method name=
\"
SetServersEx
\"
>
\n
"
" <arg name=
\"
servers
\"
direction=
\"
in
\"
type=
\"
aas
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
SetFilterWin2KOption
\"
>
\n
"
" <arg name=
\"
filterwin2k
\"
direction=
\"
in
\"
type=
\"
b
\"
/>
\n
"
" </method>
\n
"
" <method name=
\"
SetBogusPrivOption
\"
>
\n
"
" <arg name=
\"
boguspriv
\"
direction=
\"
in
\"
type=
\"
b
\"
/>
\n
"
" </method>
\n
"
" <signal name=
\"
DhcpLeaseAdded
\"
>
\n
"
" <arg name=
\"
ipaddr
\"
type=
\"
s
\"
/>
\n
"
" <arg name=
\"
hwaddr
\"
type=
\"
s
\"
/>
\n
"
...
...
@@ -372,6 +378,30 @@ static DBusMessage* dbus_read_servers_ex(DBusMessage *message, int strings)
return
error
;
}
static
DBusMessage
*
dbus_set_bool
(
DBusMessage
*
message
,
int
flag
,
char
*
name
)
{
DBusMessageIter
iter
;
dbus_bool_t
enabled
;
if
(
!
dbus_message_iter_init
(
message
,
&
iter
)
||
dbus_message_iter_get_arg_type
(
&
iter
)
!=
DBUS_TYPE_BOOLEAN
)
return
dbus_message_new_error
(
message
,
DBUS_ERROR_INVALID_ARGS
,
"Expected boolean argument"
);
dbus_message_iter_get_basic
(
&
iter
,
&
enabled
);
if
(
enabled
)
{
my_syslog
(
LOG_INFO
,
"Enabling --%s option from D-Bus"
,
name
);
set_option_bool
(
flag
);
}
else
{
my_syslog
(
LOG_INFO
,
"Disabling --$s option from D-Bus"
,
name
);
reset_option_bool
(
flag
);
}
return
NULL
;
}
DBusHandlerResult
message_handler
(
DBusConnection
*
connection
,
DBusMessage
*
message
,
void
*
user_data
)
...
...
@@ -415,6 +445,14 @@ DBusHandlerResult message_handler(DBusConnection *connection,
reply
=
dbus_read_servers_ex
(
message
,
1
);
new_servers
=
1
;
}
else
if
(
strcmp
(
method
,
"SetFilterWin2KOption"
)
==
0
)
{
reply
=
dbus_set_bool
(
message
,
OPT_FILTER
,
"filterwin2k"
);
}
else
if
(
strcmp
(
method
,
"SetBogusPrivOption"
)
==
0
)
{
reply
=
dbus_set_bool
(
message
,
OPT_BOGUSPRIV
,
"bogus-priv"
);
}
else
if
(
strcmp
(
method
,
"ClearCache"
)
==
0
)
clear_cache
=
1
;
else
...
...
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