raw.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2017 Freie Universität Berlin
3  * SPDX-License-Identifier: LGPL-2.1-only
4  */
5 
6 #pragma once
7 
19 #include "net/gnrc/netif.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
40 int gnrc_netif_raw_create(gnrc_netif_t *netif, char *stack, int stacksize,
41  char priority, char *name, netdev_t *dev);
42 
43 #ifdef __cplusplus
44 }
45 #endif
46 
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:129
Structure to hold driver state.
Definition: netdev.h:365