Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread Ajay Garg
Ping :) Regards, Ajay On Sat, Mar 10, 2012 at 2:32 PM, Ajay Garg ajaygargn...@gmail.com wrote: Moreover, what about the specs page for 0.9 (on similar lines as http://projects.gnome.org/NetworkManager/developers/api/08/settings-spec-08.html), especially for WiMax related settings?

Re: [MM 0.6] Plumb up the SPN display-rule bits

2012-03-12 Thread Aleksander Morgado
A possible fix to handle the case where we don't know how much we can read would be to try to read the first bytes of the record (3 or 4 or 5 just in case) to get the full record length of the record, assuming 1-3 bytes max for the

Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread David Röthlisberger
On 10 Mar 2012, at 09:02, Ajay Garg wrote: Moreover, what about the specs page for 0.9 (on similar lines as http://projects.gnome.org/NetworkManager/developers/api/08/settings-spec-08.html), especially for WiMax related settings? It's linked to from here:

Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread Ajay Garg
Thanks David for the reply. What I meant something was to add a wimax connection (something along the lines of http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/examples/python/add-system-wifi-connection.py). Unless of course, Wimax is a sub-type of Wifi; i.e. Wimax has same

Re: [MM 0.6] Plumb up the SPN display-rule bits

2012-03-12 Thread Aleksander Morgado
Hey Nathan, On 03/01/2012 02:28 PM, Aleksander Morgado wrote: -/* First byte is metadata; remainder is GSM-7 unpacked into octets; convert to UTF8 */ +/* Bits in the first byte specify rules for name display */ +if (bin[0] == '\xFF' bin[1] == '\xFF') { +

Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread David Röthlisberger
On 12 Mar 2012, at 11:06, Ajay Garg wrote: Thanks David for the reply. What I meant something was to add a wimax connection (something along the lines of http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/examples/python/add-system-wifi-connection.py). Unless of course, Wimax

Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread Ajay Garg
Ahh.. Thanks; and sorry, I missed that table earlier. Regarding the security protocols for Wimax, I'll read on.. Thanks and Regards, Ajay On Mon, Mar 12, 2012 at 5:05 PM, David Röthlisberger da...@rothlis.net wrote: On 12 Mar 2012, at 11:06, Ajay Garg wrote: Thanks David for the reply. What

Re: [MM 0.6] Plumb up the SPN display-rule bits

2012-03-12 Thread Aleksander Morgado
Hey, A possible fix to handle the case where we don't know how much we can read would be to try to read the first bytes of the record (3 or 4 or 5 just in case) to get the full record length of the record, assuming 1-3 bytes max for

Re: [PATCH] gsm: pass the PPP auth preferences for STATIC and DHCP device use

2012-03-12 Thread Dan Williams
On Wed, 2012-03-07 at 12:37 +, Andrew Bird wrote: When using the either DHCP or STATIC IpMethods the modem manager or device itself negotiates the PPP session, so we need to pass the authentication preferences through to MM. Instead of individual keys, lets use a u32 bitfield here. If the

Re: [PATCH] dbus error enum fixes

2012-03-12 Thread Dan Williams
On Fri, 2012-03-09 at 09:53 -0500, Dan Winship wrote: I'm not sure I got the description of the problem right in the commit message... This fixes all of the enums that had been manually registered pre-glib-mkenums to have the same values now as they did then. It also fixes a few new enum

Re: [PATCH] libnm-glib: add missing nm_device_set_device_type to libnm-glib.ver

2012-03-12 Thread Dan Williams
On Thu, 2012-03-08 at 17:31 -0500, Mathieu Trudel-Lapierre wrote: Otherwise the build fails when running tests. Actually that should be a private symbol and thus prefixed with _ which I've just pushed. Should have been part of the initial patch I did. Dan --- libnm-glib/libnm-glib.ver |

Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread Dan Williams
On Mon, 2012-03-12 at 17:20 +0530, Ajay Garg wrote: Ahh.. Thanks; and sorry, I missed that table earlier. Regarding the security protocols for Wimax, I'll read on.. There's nothing to specify for WiMAX since that's all handled on a lower level, at least with all the hardware that's out there

Re: DBUS specifications for NetworkManager 0.9

2012-03-12 Thread Ajay Garg
Thanks Dan. That was really useful information. So, this seems somewhat like a WPA/WPA2-Enterprise WIFI network situation. However, I still wonder (no offense to you please ...), as to there _must_ be some authentication somewhere; for as it currently stands that NSP is publically available

[PATCH] gsm: pass the PPP auth preferences for STATIC and DHCP device use

2012-03-12 Thread Andrew Bird
When using the either DHCP or STATIC IpMethods the modem manager or device itself negotiates the PPP session so we need to pass the authentication preferences through to MM. Notes: 1/ Using a bitfield now that happens to match the Ericsson in the lower orders so that it's far more tidy.

Re: [PATCH] gsm: pass the PPP auth preferences for STATIC and DHCP device use

2012-03-12 Thread Andrew Bird (Sphere Systems)
Hi Dan, On Monday 12 March 2012, Dan Williams wrote: On Wed, 2012-03-07 at 12:37 +, Andrew Bird wrote: When using the either DHCP or STATIC IpMethods the modem manager or device itself negotiates the PPP session, so we need to pass the authentication preferences through to MM.