1/*
2 * Encoding of WNM packets.
3 *
4 * Copyright (C) 2015, Broadcom Corporation
5 * All Rights Reserved.
6 *
7 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
8 * the contents of this file may not be disclosed to third parties, copied
9 * or duplicated in any form, in whole or in part, without the prior
10 * written permission of Broadcom Corporation.
11 *
12 * $Id:$
13 */
14
15#ifndef _BCM_ENCODE_WNM_H_
16#define _BCM_ENCODE_WNM_H_
17
18#include "typedefs.h"
19#include "bcm_encode.h"
20
21/* encode WNM-notification request for subscription remediation */
22int bcm_encode_wnm_subscription_remediation(bcm_encode_t *pkt,
23	uint8 dialogToken, uint16 urlLen, char *url);
24
25#endif /* _BCM_ENCODE_WNM_H_ */
26