On Thu, 2012-04-12 at 16:46 -0700, Ashok Nagarajan wrote:
> Signed-off-by: Ashok Nagarajan <[email protected]>
> ---
>  station.c |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
> 
> diff --git a/station.c b/station.c
> index ef69ea5..75e2369 100644
> --- a/station.c
> +++ b/station.c
> @@ -45,6 +45,7 @@ static int print_sta_handler(struct nl_msg *msg, void *arg)
>               [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
>               [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
>               [NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
> +             [NL80211_STA_INFO_T_OFFSET] = { .type = NLA_U64 },
>               [NL80211_STA_INFO_TX_BITRATE] = { .type = NLA_NESTED },
>               [NL80211_STA_INFO_LLID] = { .type = NLA_U16 },
>               [NL80211_STA_INFO_PLID] = { .type = NLA_U16 },
> @@ -113,6 +114,9 @@ static int print_sta_handler(struct nl_msg *msg, void 
> *arg)
>       if (sinfo[NL80211_STA_INFO_SIGNAL_AVG])
>               printf("\n\tsignal avg:\t%d dBm",
>                       (int8_t)nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL_AVG]));
> +     if (sinfo[NL80211_STA_INFO_T_OFFSET])
> +             printf("\n\tToffset:\t%lld us",
> +                     (int64_t)nla_get_u64(sinfo[NL80211_STA_INFO_T_OFFSET]));

Or maybe this did, that seems more likely.

johannes

_______________________________________________
Devel mailing list
[email protected]
http://lists.open80211s.org/cgi-bin/mailman/listinfo/devel

Reply via email to