UbixOS V2
2.0
mld6.h
Go to the documentation of this file.
1
8
/*
9
* Copyright (c) 2010 Inico Technologies Ltd.
10
* All rights reserved.
11
*
12
* Redistribution and use in source and binary forms, with or without modification,
13
* are permitted provided that the following conditions are met:
14
*
15
* 1. Redistributions of source code must retain the above copyright notice,
16
* this list of conditions and the following disclaimer.
17
* 2. Redistributions in binary form must reproduce the above copyright notice,
18
* this list of conditions and the following disclaimer in the documentation
19
* and/or other materials provided with the distribution.
20
* 3. The name of the author may not be used to endorse or promote products
21
* derived from this software without specific prior written permission.
22
*
23
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
24
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
26
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
28
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
31
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
32
* OF SUCH DAMAGE.
33
*
34
* This file is part of the lwIP TCP/IP stack.
35
*
36
* Author: Ivan Delamer <delamer@inicotech.com>
37
*
38
*
39
* Please coordinate changes and requests with Ivan Delamer
40
* <delamer@inicotech.com>
41
*/
42
43
#ifndef LWIP_HDR_MLD6_H
44
#define LWIP_HDR_MLD6_H
45
46
#include "
net/opt.h
"
47
48
#if LWIP_IPV6_MLD && LWIP_IPV6
/* don't build if not configured for use in lwipopts.h */
49
50
#include "
net/pbuf.h
"
51
#include "
net/netif.h
"
52
53
#ifdef __cplusplus
54
extern
"C"
{
55
#endif
56
58
struct
mld_group {
60
struct
mld_group *next;
62
ip6_addr_t group_address;
64
u8_t
last_reporter_flag;
66
u8_t
group_state;
68
u16_t
timer;
70
u8_t
use;
71
};
72
73
#define MLD6_TMR_INTERVAL 100
/* Milliseconds */
74
75
err_t
mld6_stop(
struct
netif
*
netif
);
76
void
mld6_report_groups(
struct
netif
*
netif
);
77
void
mld6_tmr(
void
);
78
struct
mld_group *mld6_lookfor_group(
struct
netif
*ifp,
const
ip6_addr_t *addr);
79
void
mld6_input(
struct
pbuf
*p,
struct
netif
*inp);
80
err_t
mld6_joingroup(
const
ip6_addr_t *srcaddr,
const
ip6_addr_t *groupaddr);
81
err_t
mld6_joingroup_netif(
struct
netif
*
netif
,
const
ip6_addr_t *groupaddr);
82
err_t
mld6_leavegroup(
const
ip6_addr_t *srcaddr,
const
ip6_addr_t *groupaddr);
83
err_t
mld6_leavegroup_netif(
struct
netif
*
netif
,
const
ip6_addr_t *groupaddr);
84
91
#define netif_mld6_data(netif) ((struct mld_group *)netif_get_client_data(netif, LWIP_NETIF_CLIENT_DATA_INDEX_MLD6))
92
93
#ifdef __cplusplus
94
}
95
#endif
96
97
#endif
/* LWIP_IPV6_MLD && LWIP_IPV6 */
98
99
#endif
/* LWIP_HDR_MLD6_H */
opt.h
pbuf.h
u16_t
uint16_t u16_t
Definition:
arch.h:124
netif.h
u8_t
uint8_t u8_t
Definition:
arch.h:122
netif
Definition:
netif.h:233
err_t
s8_t err_t
Definition:
err.h:57
pbuf
Definition:
pbuf.h:142
C:
Dev
git
UbixOS
sys
include
net
mld6.h
Generated by
1.8.16