30 lines
740 B
C
30 lines
740 B
C
/*
|
|
* hostapd / P2P integration
|
|
* Copyright (c) 2009, Atheros Communications
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
* license.
|
|
*
|
|
* See README and COPYING for more details.
|
|
*/
|
|
|
|
#include "utils/includes.h"
|
|
|
|
#include "utils/common.h"
|
|
#include "p2p/p2p.h"
|
|
#include "sta_info.h"
|
|
#include "p2p_hostapd.h"
|
|
|
|
|
|
int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|
char *buf, size_t buflen)
|
|
{
|
|
if (sta->p2p_ie == NULL)
|
|
return 0;
|
|
|
|
return p2p_ie_text(sta->p2p_ie, buf, buf + buflen);
|
|
}
|