WPS: Remove unused send_wpabuf()
Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
e912986056
commit
67807132cf
2 changed files with 0 additions and 18 deletions
|
@ -432,23 +432,6 @@ static void subscr_addr_list_create(struct subscription *s,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int send_wpabuf(int fd, struct wpabuf *buf)
|
|
||||||
{
|
|
||||||
wpa_printf(MSG_DEBUG, "WPS UPnP: Send %lu byte message",
|
|
||||||
(unsigned long) wpabuf_len(buf));
|
|
||||||
errno = 0;
|
|
||||||
if (write(fd, wpabuf_head(buf), wpabuf_len(buf)) !=
|
|
||||||
(int) wpabuf_len(buf)) {
|
|
||||||
wpa_printf(MSG_ERROR, "WPS UPnP: Failed to send buffer: "
|
|
||||||
"errno=%d (%s)",
|
|
||||||
errno, strerror(errno));
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void wpabuf_put_property(struct wpabuf *buf, const char *name,
|
static void wpabuf_put_property(struct wpabuf *buf, const char *name,
|
||||||
const char *value)
|
const char *value)
|
||||||
{
|
{
|
||||||
|
|
|
@ -158,7 +158,6 @@ void subscription_destroy(struct subscription *s);
|
||||||
struct subscription * subscription_find(struct upnp_wps_device_sm *sm,
|
struct subscription * subscription_find(struct upnp_wps_device_sm *sm,
|
||||||
const u8 uuid[UUID_LEN]);
|
const u8 uuid[UUID_LEN]);
|
||||||
void subscr_addr_delete(struct subscr_addr *a);
|
void subscr_addr_delete(struct subscr_addr *a);
|
||||||
int send_wpabuf(int fd, struct wpabuf *buf);
|
|
||||||
int get_netif_info(const char *net_if, unsigned *ip_addr, char **ip_addr_text,
|
int get_netif_info(const char *net_if, unsigned *ip_addr, char **ip_addr_text,
|
||||||
u8 mac[ETH_ALEN]);
|
u8 mac[ETH_ALEN]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue