summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Seonah Moon [Fri, 25 Oct 2019 02:28:10 +0000 (11:28 +0900)]
doc: fix wrong description
Change-Id: I21adbdf06a9ee5fdf28b60e3e8c615b353eeec1e
Seonah Moon [Tue, 7 Nov 2017 04:03:48 +0000 (13:03 +0900)]
Add @remark description for wifi_manager_foreach_found_ap()
Change-Id: I9b00096d7a86d14c40b465b972d5dd2e68d3986d
chleun.moon [Wed, 2 Aug 2017 01:08:04 +0000 (10:08 +0900)]
[WGID-159193] Fixed unreachable code
Change-Id: I5f68ce8ee91452c6270d6407862a42c8ac956046
Signed-off-by: cheoleun <chleun.moon@samsung.com>
chleun.moon [Tue, 1 Aug 2017 09:04:30 +0000 (18:04 +0900)]
Add null check after g_try_malloc0 (WGID-265336)
Change-Id: I8c1a29a06bb8e83f0725a56a8b2ba388e636a566
Signed-off-by: cheoleun <chleun.moon@samsung.com>
Seonah Moon [Wed, 22 Mar 2017 06:25:22 +0000 (15:25 +0900)]
Changed the path of license by using '%license' macro
Change-Id: I380105706ed6dfa636e5d154c34fbb8cc1bad5ba
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
chleun.moon [Mon, 27 Mar 2017 02:07:34 +0000 (11:07 +0900)]
Fix memory leak (WGID 185683, 185684)
Change-Id: If5727ee4eca7f53b9ccd0395f52d03f5c682bfdc
Signed-off-by: cheoleun <chleun.moon@samsung.com>
Seonah Moon [Mon, 13 Feb 2017 08:41:42 +0000 (17:41 +0900)]
WGID-169215: Fixed memory leak
Change-Id: If57184663e6b17b2dc2bc774c50a25071064fe7e
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
chleun.moon [Thu, 26 Jan 2017 01:22:52 +0000 (10:22 +0900)]
Correct doxygen
Change-Id: I635edcd6adf42d4759ed472d21768b2c3ba41cd0
Signed-off-by: cheoleun <chleun.moon@samsung.com>
Seonah Moon [Mon, 2 Jan 2017 02:21:06 +0000 (11:21 +0900)]
[TSAM-12289] Retrun error when MAC address is empty
Change-Id: If0740adab0d170b12cc7cfd630759b2df0ec9306
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
hyunuktak [Fri, 2 Dec 2016 02:23:52 +0000 (11:23 +0900)]
Fix a savce for unreachable code
Change-Id: I18c76b532654980a6dffe3e66e954c0154e00ac3
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Thu, 10 Nov 2016 00:47:54 +0000 (09:47 +0900)]
Modified the signal handler for overlap connection/disconnection callback
Change-Id: I2f44aa2639ef67f10c52ec59bb15889397bcaf6e
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Tue, 8 Nov 2016 11:05:17 +0000 (20:05 +0900)]
Added WPA2_PSK security type for wlan mode
Change-Id: I9bf076556748c7ca129df5fcb682a3db85f1946b
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Mon, 7 Nov 2016 06:02:26 +0000 (15:02 +0900)]
Fixed coding rule issues
Change-Id: I87842c4cbce30fd8999ee149035dea99e265200a
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Mon, 7 Nov 2016 05:57:36 +0000 (14:57 +0900)]
Modify to update specific scan list and clear profile list
Change-Id: Ic6103913ab209e4c30f3e60b235a23c2370926b4
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
chleun.moon [Wed, 2 Nov 2016 05:09:39 +0000 (14:09 +0900)]
Merge branch 'tizen' into tizen_3.0
Change-Id: Ic2b5c5c2a57570d3dada79b5c42f924edd5fcd90
Signed-off-by: cheoleun <chleun.moon@samsung.com>
Saurav Babu [Thu, 27 Oct 2016 04:20:01 +0000 (09:50 +0530)]
Update AP info on changing IP Method Type
Wi-Fi manager package added CAPI wifi_manager_update_ap() to update AP
info when IP Method type is changed. This CAPI must be called to update
AP info properly
Change-Id: I995b94a8bb88ae43a69db90be238334f244e2e73
Signed-off-by: Saurav Babu <saurav.babu@samsung.com>
cheoleun moon [Thu, 6 Oct 2016 00:39:51 +0000 (17:39 -0700)]
Merge "Fixed chances of memory corruption in wifi_manager_get_network_interface_name()." into tizen
cheoleun moon [Thu, 6 Oct 2016 00:39:32 +0000 (17:39 -0700)]
Merge "Fixed chances of memory corruption in wifi_manager_get_mac_address()." into tizen
cheoleun moon [Thu, 6 Oct 2016 00:38:56 +0000 (17:38 -0700)]
Merge "Fixed memory leaks when using g_variant_get()." into tizen
cheoleun moon [Thu, 6 Oct 2016 00:24:37 +0000 (17:24 -0700)]
Merge "[wifi-manager]: fixed typo issue" into tizen
Nishant Chaprana [Wed, 5 Oct 2016 09:43:27 +0000 (15:13 +0530)]
Fixed chances of memory corruption in wifi_manager_get_network_interface_name().
Description: As per API documentation, mac_address should be freed using free().
But we are using glib allocator for allocating memory.
So, that allocated memory should be freed by g_free() only as per GLIB documentation.
Usage os g_strdup in API may lead to memory corruption, because memory allocated
using g_strdup should be freed using g_free.
So to match declaration in header file for wifi_manager_get_network_interface_name()
we should use strndup in place of g_strdup().
Change-Id: I0dc8df3aaa66f402075c6369964c9ae1919d562f
Signed-off-by: Nishant Chaprana <n.chaprana@samsung.com>
Nishant Chaprana [Wed, 5 Oct 2016 09:20:08 +0000 (14:50 +0530)]
Fixed chances of memory corruption in wifi_manager_get_mac_address().
Description: As per API documentation, mac_address should be freed using free().
But we are using g_try_malloc0 for allocating memory for Tizen TV profile.
So, that allocated memory should be freed by g_free() only as per GLIB documentation.
Usage os g_try_malloc0 in API will lead to memory corruption, because g_try_malloc0
and normal memory allocator may use different memory pools which will be freed properly
by there corresponding memory deallocator only.
So to match declaration in header file for wifi_manager_get_mac_address()
we should use strndup in place of g_try_malloc0().
Change-Id: I4263a456c9f6fa7dec0ce4cd8c24778b4ae6e850
Signed-off-by: Nishant Chaprana <n.chaprana@samsung.com>
Nishant Chaprana [Wed, 5 Oct 2016 08:52:01 +0000 (14:22 +0530)]
Fixed memory leaks when using g_variant_get().
Change-Id: I40b45fa19f0aa07bcdb961c39bb5676b126ee241
Signed-off-by: Nishant Chaprana <n.chaprana@samsung.com>
hyunuktak [Wed, 5 Oct 2016 02:17:58 +0000 (11:17 +0900)]
[wifi-manager] Modify to load configurations
When there is configuration ID without settings file,
it is not error, just no profile.
Change-Id: Ib97b54198d825baa2093b1b660dad6bd40cb6d6f
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Tue, 4 Oct 2016 04:49:06 +0000 (13:49 +0900)]
[wifi-manager] remove to check NULL for callback function
This can be NULL if you don't want to get the notification about wifi
deactivate.
Change-Id: I90a18b9327ceb923d90cb626db1d7c96189359c3
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
Maneesh Jain [Fri, 30 Sep 2016 06:56:39 +0000 (12:26 +0530)]
[wifi-manager]: fixed typo issue
Change-Id: I449ee2ead5744720a54aa938fcfe2abb71db0096
Signed-off-by: Maneesh Jain <maneesh.jain@samsung.com>
hyunuktak [Tue, 27 Sep 2016 06:30:10 +0000 (15:30 +0900)]
Remove to check NULL for callback function
This can be NULL if you don't want to get the notification about wifi
activate.
Change-Id: Ie3e325edc5545d9cf67b18d9dd6fca8cb9fc24b4
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Fri, 23 Sep 2016 01:45:07 +0000 (10:45 +0900)]
[wifi-manager] remove reference warning
Change-Id: I295eaf4e33722c14b4764ed1993ed94dccbab336
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
hyunuktak [Tue, 9 Aug 2016 00:47:42 +0000 (09:47 +0900)]
Initialize the wifi-manager package
The handle based module to support multi instance
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
Change-Id: I2d9445b1b42ebd2e5274b53192c5d577d1ab69b7
seonil kim [Wed, 13 Jul 2016 01:00:12 +0000 (18:00 -0700)]
Initial empty repository