[PATCH ModemManager] docs: mm_modem_get_sim is async

2018-08-27 Thread Guido Günther
Signed-off-by: Guido Günther --- libmm-glib/mm-modem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmm-glib/mm-modem.c b/libmm-glib/mm-modem.c index e29716be..80cb280b 100644 --- a/libmm-glib/mm-modem.c +++ b/libmm-glib/mm-modem.c @@ -2876,7 +2876,7

[PATCH] Fix compilation if we don't have INET6_ADDR_GEN_MODE_* constants

2015-10-15 Thread Guido Günther
as in src/platform/nm-linux-platform.c --- src/platform/nm-platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/nm-platform.c b/src/platform/nm-platform.c index e613157..7da3e97 100644 --- a/src/platform/nm-platform.c +++ b/src/platform/nm-platform.c @@

Re: broken build: would be good to announce new hard dependencies on the mailing list

2014-02-18 Thread Guido Günther
On Fri, Feb 14, 2014 at 04:36:44PM -0500, Pavel Simerda wrote: - Original Message - From: Colin Walters walt...@verbum.org To: Pavel Simerda psime...@redhat.com Cc: network manager networkmanager-list@gnome.org, Dan Winship d...@gnome.org, tetromino tetrom...@gentoo.org Sent:

[PATCH 1/3] qmi: Fix compilation error due to variable name change

2014-01-26 Thread Guido Günther
otherwise we fail with: CC ModemManager-mm-broadband-modem-qmi.o mm-broadband-modem-qmi.c: In function ‘modem_load_current_bands’: mm-broadband-modem-qmi.c:1881:35: error: ‘ctx’ undeclared (first use in this function) if (qmi_client_check_version (ctx-client, 1, 19)) {

[PATCH 0/3] Compile fixes with --with-newest-qmi-commands

2014-01-26 Thread Guido Günther
Hi, while building with --with-newest-qmi-commands against latest libqmi-glib HEAD I got these compile warnings. Please apply if these look o.k. Cheers, -- Guido Guido Günther (3): qmi: Fix compilation error due to variable name change qmi: Fix compilation error due to variable type change

[PATCH 2/3] qmi: Fix compilation error due to variable type change

2014-01-26 Thread Guido Günther
otherwise we fail with: CC ModemManager-mm-broadband-modem-qmi.o mm-broadband-modem-qmi.c: In function ‘get_signal_info_ready’: mm-broadband-modem-qmi.c:2309:5: error: passing argument 3 of ‘signal_info_get_quality’ from incompatible pointer type [-Werror] if (!signal_info_get_quality

[PATCH 3/3] qmi: Fix compilation error due to removed variable

2014-01-26 Thread Guido Günther
otherwise we fail with: CC ModemManager-mm-broadband-modem-qmi.o mm-broadband-modem-qmi.c: In function ‘process_gsm_info’: mm-broadband-modem-qmi.c:4182:18: error: ‘egprs_support_valid’ undeclared (first use in this function) egprs_support_valid, egprs_support,

[PATCH 1/3] Add missing space before operator

2012-12-24 Thread Guido Günther
so we don't end up with: checking for QT... no ./configure: line 20754: !echo: command not found checking for LIBNL3... no --- configure.ac |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0285b2b..fc43ed4 100644 ---

[PATCH 3/3] Print out probed session tracking

2012-12-24 Thread Guido Günther
checking for QT... no checking Session tracking support... consolekit checking for LIBNL3... no --- configure.ac |2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index f86368c..9866659 100644 --- a/configure.ac +++ b/configure.ac @@ -270,6 +270,7 @@

[PATCH 2/3] Add -q to grep

2012-12-24 Thread Guido Günther
to avoid spurious grep output: checking for QT... no consolekit checking for LIBNL3... no --- configure.ac |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fc43ed4..f86368c 100644 --- a/configure.ac +++ b/configure.ac @@ -277,7

Re: network-manager-iodine

2012-02-27 Thread Guido Günther
Hi Dan, On Mon, Feb 27, 2012 at 09:42:04AM -0600, Dan Williams wrote: [..snip..] Plugins use the failure signal to indicate that, using libnm-glib that would be: nm_vpn_plugin_failure (NM_VPN_PLUGIN (plugin), NM_VPN_PLUGIN_FAILURE_CONNECT_FAILED); with the correct error code. The

Re: network-manager-iodine

2012-02-26 Thread Guido Günther
Hi Dan, On Fri, Feb 24, 2012 at 02:25:49PM -0600, Dan Williams wrote: On Thu, 2012-02-09 at 13:49 +0100, Guido Günther wrote: Hi I've written a small network-manager VPN plugin that uses iodine to tunnel through DNS which can be usefull in case you're behind a firewall but DNS queries

network-manager-iodine

2012-02-09 Thread Guido Günther
Hi I've written a small network-manager VPN plugin that uses iodine to tunnel through DNS which can be usefull in case you're behind a firewall but DNS queries are allowed: https://honk.sigxcpu.org/piki/projects/network-manager-iodine/ git clone

Re: [PATCH 0/3] ifupdown: Ip6 support and cleanups

2011-12-13 Thread Guido Günther
On Mon, Dec 12, 2011 at 09:31:36PM -0600, Dan Williams wrote: On Mon, 2011-12-12 at 08:33 +0100, Guido Günther wrote: Hi, attached patches add basic ip6 support to the ifupdown plugin and clean up some c'n'p errors in the ip4 testcase. Committed, thanks! Thanks! -- Guido

[PATCH 0/3] ifupdown: Ip6 support and cleanups

2011-12-11 Thread Guido Günther
Hi, attached patches add basic ip6 support to the ifupdown plugin and clean up some c'n'p errors in the ip4 testcase. Cheers, -- Guido Guido Günther (3): ifupdown: cleanup indentation ifupdown: Add ifparser_haskey function ifupdown: Add support for ipv6 connections src/settings/plugins

[PATCH 2/3] ifupdown: Add ifparser_haskey function

2011-12-11 Thread Guido Günther
--- src/settings/plugins/ifupdown/interface_parser.c | 12 src/settings/plugins/ifupdown/interface_parser.h |3 +++ 2 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/settings/plugins/ifupdown/interface_parser.c

[PATCH 1/3] ifupdown: Cleanup indentation

2011-12-11 Thread Guido Günther
and remove unused variables. --- src/settings/plugins/ifupdown/parser.c |2 +- .../plugins/ifupdown/tests/test-ifupdown.c | 113 +--- 2 files changed, 54 insertions(+), 61 deletions(-) diff --git a/src/settings/plugins/ifupdown/parser.c

[PATCH 3/3] ifupdown: Add support for ipv6 connections

2011-12-11 Thread Guido Günther
--- src/settings/plugins/ifupdown/parser.c | 128 - .../plugins/ifupdown/tests/test-ifupdown.c | 202 .../ifupdown/tests/test18-wired-static-verify-ip6 |6 + 3 files changed, 329 insertions(+), 7 deletions(-) create mode 100644

[PATCH 0/2] Add support for dns-search parameter to ifupdown plugin

2011-12-07 Thread Guido Günther
Hi, while the ifupdown plugin supports the dns-nameserves parameter it doesn't allow to specify the search list so add support for that and add a testcase that verifies the parameters of a static ipv4 connection (including the dns search list). Cheers, -- Guido Guido Günther (2): ifupdown

[PATCH 1/2] ifupdown plugin: support dns-search entries

2011-12-07 Thread Guido Günther
as used by resolvconf and openresolv. --- src/settings/plugins/ifupdown/parser.c | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/settings/plugins/ifupdown/parser.c b/src/settings/plugins/ifupdown/parser.c index accf62c..f1da428 100644 ---

[PATCH 2/2] ifupdown plugin: Add testcase to verify parsing into NMConnection

2011-12-07 Thread Guido Günther
--- src/settings/plugins/ifupdown/tests/Makefile.am|2 +- .../plugins/ifupdown/tests/test-ifupdown.c | 196 .../ifupdown/tests/test17-wired-static-verify-ip4 |5 + 3 files changed, 202 insertions(+), 1 deletions(-) create mode 100644

Re: ModemManager: [PATCH] Huawei PDU encoded commands not padded

2011-11-10 Thread Guido Günther
On Thu, Nov 10, 2011 at 12:43:37AM +0200, Graham Inggs wrote: ModemManager currently encodes the USSD command *141*0# (for MTN South Africa) as AA182DA6828D00. While this works on some modems, for example the E1820, other modems, for example the E160, require USSD commands that are a multiple

[PATCH 4/5] huawei: implement ussd encoding/decoding

2011-07-17 Thread Guido Günther
Huawei wants the USSD as packed GSM. --- plugins/mm-modem-huawei-gsm.c | 51 +++- src/mm-generic-gsm.c |2 +- src/mm-modem-gsm-ussd.h |4 +++ 3 files changed, 54 insertions(+), 3 deletions(-) diff --git a/plugins/mm-modem-huawei-gsm.c

[PATCH 5/5] zte: skip hex encoding

2011-07-17 Thread Guido Günther
BZ: #652682 --- plugins/mm-modem-zte.c | 25 - 1 files changed, 24 insertions(+), 1 deletions(-) diff --git a/plugins/mm-modem-zte.c b/plugins/mm-modem-zte.c index 0f69328..6c9f395 100644 --- a/plugins/mm-modem-zte.c +++ b/plugins/mm-modem-zte.c @@ -26,15 +26,19 @@

[PATCH 1/5] trivial: update .gitignore

2011-07-17 Thread Guido Günther
Exclude files generated by make tags and include/ which only contains a generated header file. --- .gitignore |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index de47842..8b6e24b 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@

[0/0] USSD fixes for Huawei and ZTE

2011-07-17 Thread Guido Günther
Hi, the patches at fix some USSD encoding issues: https://bugzilla.gnome.org/show_bug.cgi?id=638039 https://bugzilla.gnome.org/show_bug.cgi?id=652682 and presumably https://bugzilla.gnome.org/show_bug.cgi?id=653708 https://bugzilla.gnome.org/show_bug.cgi?id=654453 I'd be great if these could

[PATCH 3/5] ussd: Add mm_modem_gsm_ussd_{de,en}code to the MMModemGsmUssd interface

2011-07-17 Thread Guido Günther
since some some modems need different quirks to encode/decode USSD messages. --- src/mm-generic-gsm.c| 69 -- src/mm-modem-gsm-ussd.c | 26 + src/mm-modem-gsm-ussd.h | 16 +++ 3 files changed, 96 insertions(+), 15

[PATCH 2/5] tests/ussd.py: improve help message

2011-07-17 Thread Guido Günther
--- test/ussd.py | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/ussd.py b/test/ussd.py index 2040f12..b3528f9 100755 --- a/test/ussd.py +++ b/test/ussd.py @@ -20,16 +20,16 @@ import sys, dbus, re MM_DBUS_SERVICE='org.freedesktop.ModemManager'