Some quick code to use UDP-only (no TCP) with mBed. Echos received packets and sends packets when a button is pressed

Dependencies:   mbed

Committer:
pehrhovey
Date:
Sun Mar 14 00:54:12 2010 +0000
Revision:
0:a548a085de55

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pehrhovey 0:a548a085de55 1 /*
pehrhovey 0:a548a085de55 2 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
pehrhovey 0:a548a085de55 3 * All rights reserved.
pehrhovey 0:a548a085de55 4 *
pehrhovey 0:a548a085de55 5 * Redistribution and use in source and binary forms, with or without modification,
pehrhovey 0:a548a085de55 6 * are permitted provided that the following conditions are met:
pehrhovey 0:a548a085de55 7 *
pehrhovey 0:a548a085de55 8 * 1. Redistributions of source code must retain the above copyright notice,
pehrhovey 0:a548a085de55 9 * this list of conditions and the following disclaimer.
pehrhovey 0:a548a085de55 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
pehrhovey 0:a548a085de55 11 * this list of conditions and the following disclaimer in the documentation
pehrhovey 0:a548a085de55 12 * and/or other materials provided with the distribution.
pehrhovey 0:a548a085de55 13 * 3. The name of the author may not be used to endorse or promote products
pehrhovey 0:a548a085de55 14 * derived from this software without specific prior written permission.
pehrhovey 0:a548a085de55 15 *
pehrhovey 0:a548a085de55 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
pehrhovey 0:a548a085de55 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
pehrhovey 0:a548a085de55 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
pehrhovey 0:a548a085de55 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
pehrhovey 0:a548a085de55 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
pehrhovey 0:a548a085de55 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
pehrhovey 0:a548a085de55 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
pehrhovey 0:a548a085de55 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
pehrhovey 0:a548a085de55 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
pehrhovey 0:a548a085de55 25 * OF SUCH DAMAGE.
pehrhovey 0:a548a085de55 26 *
pehrhovey 0:a548a085de55 27 * This file is part of the lwIP TCP/IP stack.
pehrhovey 0:a548a085de55 28 *
pehrhovey 0:a548a085de55 29 * Author: Adam Dunkels <adam@sics.se>
pehrhovey 0:a548a085de55 30 *
pehrhovey 0:a548a085de55 31 */
pehrhovey 0:a548a085de55 32 #ifndef __LWIP_RAW_H__
pehrhovey 0:a548a085de55 33 #define __LWIP_RAW_H__
pehrhovey 0:a548a085de55 34
pehrhovey 0:a548a085de55 35 #include "lwip/opt.h"
pehrhovey 0:a548a085de55 36
pehrhovey 0:a548a085de55 37 #if LWIP_RAW /* don't build if not configured for use in lwipopts.h */
pehrhovey 0:a548a085de55 38
pehrhovey 0:a548a085de55 39 #include "lwip/pbuf.h"
pehrhovey 0:a548a085de55 40 #include "lwip/inet.h"
pehrhovey 0:a548a085de55 41 #include "lwip/ip.h"
pehrhovey 0:a548a085de55 42 #include "lwip/ip_addr.h"
pehrhovey 0:a548a085de55 43
pehrhovey 0:a548a085de55 44 #ifdef __cplusplus
pehrhovey 0:a548a085de55 45 extern "C" {
pehrhovey 0:a548a085de55 46 #endif
pehrhovey 0:a548a085de55 47
pehrhovey 0:a548a085de55 48 struct raw_pcb {
pehrhovey 0:a548a085de55 49 /* Common members of all PCB types */
pehrhovey 0:a548a085de55 50 IP_PCB;
pehrhovey 0:a548a085de55 51
pehrhovey 0:a548a085de55 52 struct raw_pcb *next;
pehrhovey 0:a548a085de55 53
pehrhovey 0:a548a085de55 54 u8_t protocol;
pehrhovey 0:a548a085de55 55
pehrhovey 0:a548a085de55 56 /* receive callback function
pehrhovey 0:a548a085de55 57 * @param arg user supplied argument (raw_pcb.recv_arg)
pehrhovey 0:a548a085de55 58 * @param pcb the raw_pcb which received data
pehrhovey 0:a548a085de55 59 * @param p the packet buffer that was received
pehrhovey 0:a548a085de55 60 * @param addr the remote IP address from which the packet was received
pehrhovey 0:a548a085de55 61 * @return 1 if the packet was 'eaten' (aka. deleted),
pehrhovey 0:a548a085de55 62 * 0 if the packet lives on
pehrhovey 0:a548a085de55 63 * If returning 1, the callback is responsible for freeing the pbuf
pehrhovey 0:a548a085de55 64 * if it's not used any more.
pehrhovey 0:a548a085de55 65 */
pehrhovey 0:a548a085de55 66 u8_t (* recv)(void *arg, struct raw_pcb *pcb, struct pbuf *p,
pehrhovey 0:a548a085de55 67 struct ip_addr *addr);
pehrhovey 0:a548a085de55 68 /* user-supplied argument for the recv callback */
pehrhovey 0:a548a085de55 69 void *recv_arg;
pehrhovey 0:a548a085de55 70 };
pehrhovey 0:a548a085de55 71
pehrhovey 0:a548a085de55 72 /* The following functions is the application layer interface to the
pehrhovey 0:a548a085de55 73 RAW code. */
pehrhovey 0:a548a085de55 74 struct raw_pcb * raw_new (u8_t proto);
pehrhovey 0:a548a085de55 75 void raw_remove (struct raw_pcb *pcb);
pehrhovey 0:a548a085de55 76 err_t raw_bind (struct raw_pcb *pcb, struct ip_addr *ipaddr);
pehrhovey 0:a548a085de55 77 err_t raw_connect (struct raw_pcb *pcb, struct ip_addr *ipaddr);
pehrhovey 0:a548a085de55 78
pehrhovey 0:a548a085de55 79 void raw_recv (struct raw_pcb *pcb,
pehrhovey 0:a548a085de55 80 u8_t (* recv)(void *arg, struct raw_pcb *pcb,
pehrhovey 0:a548a085de55 81 struct pbuf *p,
pehrhovey 0:a548a085de55 82 struct ip_addr *addr),
pehrhovey 0:a548a085de55 83 void *recv_arg);
pehrhovey 0:a548a085de55 84 err_t raw_sendto (struct raw_pcb *pcb, struct pbuf *p, struct ip_addr *ipaddr);
pehrhovey 0:a548a085de55 85 err_t raw_send (struct raw_pcb *pcb, struct pbuf *p);
pehrhovey 0:a548a085de55 86
pehrhovey 0:a548a085de55 87 /* The following functions are the lower layer interface to RAW. */
pehrhovey 0:a548a085de55 88 u8_t raw_input (struct pbuf *p, struct netif *inp);
pehrhovey 0:a548a085de55 89 #define raw_init() /* Compatibility define, not init needed. */
pehrhovey 0:a548a085de55 90
pehrhovey 0:a548a085de55 91 #ifdef __cplusplus
pehrhovey 0:a548a085de55 92 }
pehrhovey 0:a548a085de55 93 #endif
pehrhovey 0:a548a085de55 94
pehrhovey 0:a548a085de55 95 #endif /* LWIP_RAW */
pehrhovey 0:a548a085de55 96
pehrhovey 0:a548a085de55 97 #endif /* __LWIP_RAW_H__ */