#include "lwip/opt.h"
#include "lwip/def.h"
#include "lwip/memp.h"
#include "lwip/inet.h"
#include "lwip/ip_addr.h"
#include "lwip/netif.h"
#include "lwip/raw.h"
#include "lwip/stats.h"
#include "lwip/snmp.h"
#include "arch/perf.h"
#include <string.h>
Go to the source code of this file.
Functions | |
u8_t | raw_input (struct pbuf *p, struct netif *inp) |
err_t | raw_bind (struct raw_pcb *pcb, struct ip_addr *ipaddr) |
err_t | raw_connect (struct raw_pcb *pcb, struct ip_addr *ipaddr) |
void | raw_recv (struct raw_pcb *pcb, u8_t(*recv)(void *arg, struct raw_pcb *upcb, struct pbuf *p, struct ip_addr *addr), void *recv_arg) |
err_t | raw_sendto (struct raw_pcb *pcb, struct pbuf *p, struct ip_addr *ipaddr) |
err_t | raw_send (struct raw_pcb *pcb, struct pbuf *p) |
void | raw_remove (struct raw_pcb *pcb) |
struct raw_pcb * | raw_new (u8_t proto) |
Implementation of raw protocol PCBs for low-level handling of different types of protocols besides (or overriding) those already available in lwIP.
Definition in file raw.c.
Bind a RAW PCB.
pcb | RAW PCB to be bound with a local address ipaddr. | |
ipaddr | local IP address to bind with. Use IP_ADDR_ANY to bind to all local interfaces. |
Connect an RAW PCB. This function is required by upper layers of lwip. Using the raw api you could use raw_sendto() instead
This will associate the RAW PCB with the remote address.
pcb | RAW PCB to be connected with remote address ipaddr and port. | |
ipaddr | remote IP address to connect with. |
Determine if in incoming IP packet is covered by a RAW PCB and if so, pass it to a user-provided receive callback function.
Given an incoming IP datagram (as a chain of pbufs) this function finds a corresponding RAW PCB and calls the corresponding receive callback function.
p | pbuf to be demultiplexed to a RAW PCB. | |
inp | network interface on which the datagram was received. |
Definition at line 78 of file raw.c.
Create a RAW PCB.
proto | the protocol number of the IPs payload (e.g. IP_PROTO_ICMP) |
Definition at line 335 of file raw.c.
void raw_recv | ( | struct raw_pcb * | pcb, | |
u8_t(*)(void *arg, struct raw_pcb *upcb, struct pbuf *p, struct ip_addr *addr) | recv, | |||
void * | recv_arg | |||
) |
Set the callback function for received packets that match the raw PCB's protocol and binding.
The callback function MUST either
void raw_remove | ( | struct raw_pcb * | pcb | ) |
Send the raw IP packet to the address given by raw_connect()
pcb | the raw pcb which to send | |
p | the IP payload to send |
Definition at line 290 of file raw.c.
Send the raw IP packet to the given address. Note that actually you cannot modify the IP headers (this is inconsistent with the receive callback where you actually get the IP headers), you can only specify the IP payload here. It requires some more changes in lwIP. (there will be a raw_send() function then.)
pcb | the raw pcb which to send | |
p | the IP payload to send | |
ipaddr | the destination address of the IP packet |
Definition at line 206 of file raw.c.