Lines Matching full:address

9  * @brief Public API for network link address
24 * @brief Network link address library
25 * @defgroup net_linkaddr Network Link Address Library
32 /** Maximum length of the link address */
44 * Type of the link address. This indicates the network technology that this
45 * address is used in. Note that in order to save space we store the value
50 /** Unknown link address type. */
52 /** IEEE 802.15.4 link address. */
54 /** Bluetooth IPSP link address. */
56 /** Ethernet link address. */
58 /** Dummy link address. Used in testing apps and loopback support. */
60 /** CANBUS link address. */
65 * @brief Hardware link address structure
67 * Used to hold the link address information. This variant is needed
68 * when we have to store the link layer address.
75 /** What kind of address is this for */
78 /** The real length of the ll address. */
81 /** The array of bytes representing the address */
88 * @param lladdr1 Pointer to a link layer address
89 * @param lladdr2 Pointer to a link layer address
109 * @brief Set the member data of a link layer address storage structure.
111 * @param lladdr The link address storage structure to change.
112 * @param new_addr Array of bytes containing the link address.
113 * @param new_len Length of the link address array.
136 * @brief Copy link address from one variable to another.
138 * @param dst The link address structure destination.
139 * @param src The link address structure to source.
161 * @brief Create a link address structure.
163 * @param lladdr The link address structure to change.
164 * @param addr Array of bytes containing the link address. If set to NULL,
165 * the address will be cleared.
166 * @param len Length of the link address array.
167 * @param type Type of the link address.
195 * @brief Clear link address.
197 * @param lladdr The link address structure.