-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PW_SID:852882] [1/2] dbus: add dbus-over-tcp support #69
base: workflow
Are you sure you want to change the base?
Conversation
l_dbus_new() will now accept tcp endpoints, however it will only accept a numeric address for 'host'; it will not resolve hostnames. This is so we can avoid a potential long, blocking call to getaddrinfo(). The connect() call to the host is also non-blocking. This means that auth will not happen until you start the event loop (with a call to l_main_run() et. al.). Co-authored-by: Ramon Ribeiro <rhpr@cesar.org.br>
Co-authored-by: Ramon Ribeiro <rhpr@cesar.org.br>
Fetch PR GitLint Output:
Prep - Setup ELL Make Distcheck Build - Configure Make Check Make Check w/Valgrind Incremental Build with patches Output:
Autotest Runner Clang Build Output:
|
d078c9c
to
a96766e
Compare
70750ab
to
108b545
Compare
cf9aae3
to
d96cbc5
Compare
d96cbc5
to
a575883
Compare
ae6045c
to
a70fe95
Compare
a70fe95
to
8ded230
Compare
b70a423
to
f7b1d76
Compare
3164ee9
to
1f782ea
Compare
c181123
to
8f71769
Compare
l_dbus_new() will now accept tcp endpoints, however it will only accept
a numeric address for 'host'; it will not resolve hostnames. This is so
we can avoid a potential long, blocking call to getaddrinfo().
The connect() call to the host is also non-blocking. This means that
auth will not happen until you start the event loop (with a call to
l_main_run() et. al.).
Co-authored-by: Ramon Ribeiro rhpr@cesar.org.br
ell/dbus.c | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 111 insertions(+)