diff options
author | Jouni Malinen <j@w1.fi> | 2016-08-06 09:38:21 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2016-08-06 09:38:21 (GMT) |
commit | e55df99ee6281f43de620c6bd46faee2ca0252a2 (patch) | |
tree | c535ab8986d2bd2b7591dcd6238d4c286ed70161 /src | |
parent | 23c130e9b74ffca645d1c420ac3483db26de5ade (diff) | |
download | hostap-e55df99ee6281f43de620c6bd46faee2ca0252a2.zip hostap-e55df99ee6281f43de620c6bd46faee2ca0252a2.tar.gz hostap-e55df99ee6281f43de620c6bd46faee2ca0252a2.tar.bz2 |
Share a single str_starts() implementation
No need to define this as a static function in multiple files.
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src')
-rw-r--r-- | src/ap/wps_hostapd.c | 6 | ||||
-rw-r--r-- | src/utils/common.c | 6 | ||||
-rw-r--r-- | src/utils/common.h | 2 | ||||
-rw-r--r-- | src/wps/wps_upnp_ssdp.c | 6 |
4 files changed, 8 insertions, 12 deletions
diff --git a/src/ap/wps_hostapd.c b/src/ap/wps_hostapd.c index faf38c9..95b40da 100644 --- a/src/ap/wps_hostapd.c +++ b/src/ap/wps_hostapd.c @@ -269,12 +269,6 @@ static void hostapd_wps_enrollee_seen_cb(void *ctx, const u8 *addr, } -static int str_starts(const char *str, const char *start) -{ - return os_strncmp(str, start, os_strlen(start)) == 0; -} - - static void wps_reload_config(void *eloop_data, void *user_ctx) { struct hostapd_iface *iface = eloop_data; diff --git a/src/utils/common.c b/src/utils/common.c index 9856463..68413b2 100644 --- a/src/utils/common.c +++ b/src/utils/common.c @@ -1194,3 +1194,9 @@ int ssid_parse(const char *buf, struct wpa_ssid_value *ssid) return ssid->ssid_len ? 0 : -1; } + + +int str_starts(const char *str, const char *start) +{ + return os_strncmp(str, start, os_strlen(start)) == 0; +} diff --git a/src/utils/common.h b/src/utils/common.h index 197e4d1..7785677 100644 --- a/src/utils/common.h +++ b/src/utils/common.h @@ -550,6 +550,8 @@ size_t utf8_unescape(const char *inp, size_t in_size, char *outp, size_t out_size); int is_ctrl_char(char c); +int str_starts(const char *str, const char *start); + /* * gcc 4.4 ends up generating strict-aliasing warnings about some very common diff --git a/src/wps/wps_upnp_ssdp.c b/src/wps/wps_upnp_ssdp.c index 968fc03..a685ce4 100644 --- a/src/wps/wps_upnp_ssdp.c +++ b/src/wps/wps_upnp_ssdp.c @@ -100,12 +100,6 @@ static int line_length(const char *l) } -static int str_starts(const char *str, const char *start) -{ - return os_strncmp(str, start, os_strlen(start)) == 0; -} - - /*************************************************************************** * Advertisements. * These are multicast to the world to tell them we are here. |