Skip to content

Instantly share code, notes, and snippets.

@seinlin
Created November 26, 2013 02:11
Show Gist options
  • Save seinlin/7652468 to your computer and use it in GitHub Desktop.
Save seinlin/7652468 to your computer and use it in GitHub Desktop.
Diff between JB and KK for WiFi.
diff --git a/dom/wifi/WifiUtils.h b/dom/wifi/WifiUtils.h
index fd81f80..0d4e923 100644
--- a/dom/wifi/WifiUtils.h
+++ b/dom/wifi/WifiUtils.h
@@ -87,10 +87,10 @@ class WpaSupplicantImpl
{
public:
virtual int32_t
- do_wifi_wait_for_event(const char *iface, char *buf, size_t len) = 0; // ICS != JB
+ do_wifi_wait_for_event(const char *iface, char *buf, size_t len) = 0; // ICS != JB != KK
virtual int32_t
- do_wifi_command(const char* iface, const char* cmd, char* buff, size_t* len) = 0; // ICS != JB
+ do_wifi_command(const char* iface, const char* cmd, char* buff, size_t* len) = 0; // ICS != JB != KK
virtual int32_t
do_wifi_load_driver() = 0;
@@ -99,16 +99,16 @@ public:
do_wifi_unload_driver() = 0;
virtual int32_t
- do_wifi_start_supplicant(int32_t) = 0; // ICS != JB
+ do_wifi_start_supplicant(int32_t) = 0; // ICS != JB == KK
virtual int32_t
- do_wifi_stop_supplicant() = 0;
+ do_wifi_stop_supplicant() = 0; // ICS != JB == KK
virtual int32_t
- do_wifi_connect_to_supplicant(const char* iface) = 0; // ICS != JB
+ do_wifi_connect_to_supplicant(const char* iface) = 0; // ICS != JB != KK
virtual void
- do_wifi_close_supplicant_connection(const char* iface) = 0; // ICS != JB
+ do_wifi_close_supplicant_connection(const char* iface) = 0; // ICS != JB != KK
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment