Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
dgram.c File Reference
#include <linux/net.h>
#include <linux/module.h>
#include <linux/if_arp.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <net/sock.h>
#include <net/af_ieee802154.h>
#include <net/ieee802154.h>
#include <net/ieee802154_netdev.h>
#include <asm/ioctls.h>
#include "af802154.h"

Go to the source code of this file.

Data Structures

struct  dgram_sock
 

Functions

int ieee802154_dgram_deliver (struct net_device *dev, struct sk_buff *skb)
 

Variables

struct proto ieee802154_dgram_prot
 

Function Documentation

int ieee802154_dgram_deliver ( struct net_device dev,
struct sk_buff skb 
)

Definition at line 350 of file dgram.c.

Variable Documentation

struct proto ieee802154_dgram_prot
Initial value:
= {
.name = "IEEE-802.15.4-MAC",
.owner = THIS_MODULE,
.obj_size = sizeof(struct dgram_sock),
.init = dgram_init,
.close = dgram_close,
.bind = dgram_bind,
.sendmsg = dgram_sendmsg,
.recvmsg = dgram_recvmsg,
.hash = dgram_hash,
.unhash = dgram_unhash,
.connect = dgram_connect,
.disconnect = dgram_disconnect,
.ioctl = dgram_ioctl,
.getsockopt = dgram_getsockopt,
.setsockopt = dgram_setsockopt,
}

Definition at line 447 of file dgram.c.