summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-05-04wispr: Set gweb debug at the right placeTomasz Bursztyka1-3/+3
2012-05-02wispr: Use g_strdup() instead of strdup()Jukka Rissanen1-1/+1
Valgrind reports following error if strdup() is used here: ==12572== Invalid read of size 4 ==12572== at 0x429113B: ??? (in /lib/libc-2.11.90.so) ==12572== by 0x80A8154: wispr_route_request (wispr.c:471) ==12572== by 0x805CA4F: resolv_result (gweb.c:449) ==12572== by 0x805DD4B: sort_and_return_results (gresolv.c:494) ==12572== by 0x805E285: received_udp_data (gresolv.c:705) ==12572== by 0x40AD8E6: ??? (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x4078AFA: g_main_context_dispatch (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x407911E: ??? (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x40796BC: g_main_loop_run (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x807400F: main (main.c:508) ==12572== Address 0x55f406c is 20 bytes inside a block of size 22 alloc'd ==12572== at 0x4029AE9: malloc (vg_replace_malloc.c:236) ==12572== by 0x40B1D6C: g_malloc (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x40B4C25: g_strdup (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x805CA23: resolv_result (gweb.c:1222) ==12572== by 0x805DD4B: sort_and_return_results (gresolv.c:494) ==12572== by 0x805E285: received_udp_data (gresolv.c:705) ==12572== by 0x40AD8E6: ??? (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x4078AFA: g_main_context_dispatch (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x407911E: ??? (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x40796BC: g_main_loop_run (in /lib/libglib-2.0.so.0.2800.6) ==12572== by 0x807400F: main (main.c:508) ==12572== If g_strdup() is used then no error is printed. This error does not make much sense but anyway use g_strdup() like in other parts of this file.
2012-05-02wispr: Possible memory leak in error caseJukka Rissanen1-1/+3
2012-05-02wifi: Plugin internal variable was not staticJukka Rissanen1-1/+1
2012-05-02connection: Set host route to VPN serverJukka Rissanen1-8/+24
This is needed so that we can access hosts behind the VPN. The route might already be setup if VPN server is the same as nameserver or similar.
2012-05-01test: Also monitor technology changesMarcel Holtmann1-5/+31
2012-05-01service: Use helper function to add timeservers only oncePatrik Flykt1-2/+7
2012-05-01clock: Use helper function to add timeservers only oncePatrik Flykt1-2/+6
2012-05-01timeserver: Use helper function to add timeservers only oncePatrik Flykt1-5/+6
2012-05-01timeserver: Helper function for adding timeservers once to a listPatrik Flykt2-0/+19
2012-04-30README: Fix version number typoPatrik Flykt1-1/+1
2012-04-30notifier: Return offline as global state if offline mode is enabledMarcel Holtmann1-3/+3
2012-04-30test: Update service monitoring scriptMarcel Holtmann1-2/+8
2012-04-30test: Remove script to monitor managerMarcel Holtmann2-32/+1
2012-04-30doc: Fix tabs vs spaces for service and technology documentationMarcel Holtmann2-13/+13
2012-04-30doc: Fix tabs vs spaces for agent documentationMarcel Holtmann1-16/+16
2012-04-29Release 0.840.84Marcel Holtmann2-1/+5
2012-04-29build: Remove dependency on libcap-ngMarcel Holtmann4-23/+3
2012-04-29test: Update service monitoring scriptMarcel Holtmann1-1/+16
2012-04-29test: Add more pretty print for service monitoringMarcel Holtmann1-2/+2
2012-04-29test: Add pretty printing for timeserversMarcel Holtmann1-1/+2
2012-04-29notifier: Remove DefaultTechnology signalMarcel Holtmann1-16/+0
2012-04-29README: Mention wpa_supplicant version detailsMarcel Holtmann1-2/+5
2012-04-29plugins: Update copyright informationMarcel Holtmann21-21/+21
2012-04-29core: Update copyright informationMarcel Holtmann62-62/+62
2012-04-29tools: Update copyright informationMarcel Holtmann18-18/+18
2012-04-29gsupplicant: Update copyright informationMarcel Holtmann4-4/+4
2012-04-29gdhcp: Update copyright informationMarcel Holtmann5-5/+5
2012-04-29gweb: Update copyright informationMarcel Holtmann7-7/+7
2012-04-29nmcompat: Use more detailed state informationMarcel Holtmann1-24/+81
2012-04-29notifier: Fix small coding style issueMarcel Holtmann1-1/+1
2012-04-29nmcompat: Fix error messageMarcel Holtmann1-1/+1
2012-04-28gssuplicant: Fix when a bss should be added or replaced in a networkTomasz Bursztyka1-6/+41
Note: on wpa_supplivant 0.7.x this fixes bug 21332 _only_ when switching from wep to psk, not the other way round due to wpa_supplicant not telling about RSN/WPA fields being empty. This could be fixed in parsing IE every time it is updated, if wpa_s signals it. It work properly on wpa_supplicant 0.8.x and 1.x since signaling RSN/WPA changes has been fixed. Fixes BMC#21332
2012-04-28gsupplicant: Added more debugging messages when adding or replacing a networkTomasz Bursztyka1-0/+6
2012-04-28gsupplicant: Creating an helper function to compute bss securityTomasz Bursztyka1-8/+14
2012-04-28gsupplicant: Renaming a function for a more relevant nameTomasz Bursztyka1-2/+2
2012-04-28Release 0.830.83Marcel Holtmann2-1/+11
2012-04-27wispr: Set host routes when requested by gwebPatrik Flykt1-4/+93
Set host routes via the interface and identified gateway when requested by gweb. Remove host routes when the check is done. Fixes BMC#25061
2012-04-27ipconfig: Add ipconfig type to __connman_ipconfig_get_gateway_from_index()Patrik Flykt5-15/+25
In order to be able to request a certain ipconfig type, add the type as a parameter to __connman_ipconfig_get_gateway_from_index().
2012-04-27tools: Add WISPr route request debug printoutsPatrik Flykt2-4/+23
Update g_web_request_get() and add WISPr route request debug printouts.
2012-04-27wispr: Update g_web_request_get()Patrik Flykt1-2/+4
2012-04-276to4: Update g_web_request_get()Patrik Flykt1-1/+1
2012-04-27gweb: Define GWebRouteFuncPatrik Flykt2-7/+22
Define GWebRouteFunc that will be called when a route to the intended destination may need to be set up.
2012-04-27technology: Create the settings file in initJukka Rissanen1-0/+3
We save offline mode status in init so that settings file gets created if it was missing.
2012-04-27technology: Save technology state if entry is missing from fileJukka Rissanen1-28/+30
So we save the technology status if the settings file does not contain it.
2012-04-27storage: Create settings file only when migratingJukka Rissanen1-27/+7
The settings file is created only when migrating from default.profile. This means that technology default values are used if settings file does not exists.
2012-04-27technology: Offline mode is OFF by defaultJukka Rissanen1-2/+2
By defalt offline mode is OFF if settings file is not found or OfflineMode entry is not found in settings file.
2012-04-27technology: Enable ethernet by defaultJukka Rissanen1-2/+9
Ethernet is enabled by default if settings file is not found or the Wired entry is not found in the file.
2012-04-27AUTHORS: Metion Adrien's contributionMarcel Holtmann1-0/+1
2012-04-27openvpn: Fix --comp-lzo parameter handlingAdrien Bustany1-14/+16
The previous code would assume all commandline options to have a value, whereas --comp-lzo does not. As a result, openvpn's argv would have a spurious empty string in its argv, and openvpn would not launch.