Loading...
Searching...
No Matches
raw.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2017 Freie Universität Berlin
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
19#ifndef NET_GNRC_NETIF_RAW_H
20#define NET_GNRC_NETIF_RAW_H
21
22#include "net/gnrc/netif.h"
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
43int gnrc_netif_raw_create(gnrc_netif_t *netif, char *stack, int stacksize,
44 char priority, char *name, netdev_t *dev);
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif /* NET_GNRC_NETIF_RAW_H */
Definition for GNRC's network interfaces.
int gnrc_netif_raw_create(gnrc_netif_t *netif, char *stack, int stacksize, char priority, char *name, netdev_t *dev)
Creates a raw network interface.
Representation of a network interface.
Definition netif.h:135
Structure to hold driver state.
Definition netdev.h:362