* include/netpacket/ieee802154.h
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __INCLUDE_NETPACKET_IEEE802154_H
#define __INCLUDE_NETPACKET_IEEE802154_H
* Included Files
****************************************************************************/
#include <stdint.h>
#include <nuttx/wireless/ieee802154/ieee802154_mac.h>
* Pre-processor Definitions
****************************************************************************/
#define IEEE802154_PANID_BROADCAST 0xffff
#define IEEE802154_ADDR_BROADCAST 0xffff
#define IEEE802154_ADDR_UNDEF 0xfffe
#define s_saddr s_u.saddr
#define s_eaddr s_u.eaddr
* Public Type Definitions
****************************************************************************/
* definitions. Particularly, enum ieee802154_addrmode_e, the address type
*
* See also the definitions above for portable union selectors.
*/
struct ieee802154_saddr_s
{
uint8_t s_mode;
* ieee802154_addrmode_e) */
uint8_t s_panid[IEEE802154_PANIDSIZE];
union
{
uint8_t saddr[IEEE802154_SADDRSIZE];
uint8_t eaddr[IEEE802154_EADDRSIZE];
} s_u;
};
*
* bind() - Associates local address with socket
* connect() - Associates a remote address with the socket (for send())
* sendto() - Send to specified remote address
* recvfrom()- Receive from indicated remote address.
*/
struct sockaddr_ieee802154_s
{
sa_family_t sa_family;
struct ieee802154_saddr_s sa_addr;
};
* Public Function Prototypes
****************************************************************************/
#endif