STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
snmp_raw.c
Go to the documentation of this file.
1 
6 /*
7  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without modification,
11  * are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  * this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  * this list of conditions and the following disclaimer in the documentation
17  * and/or other materials provided with the distribution.
18  * 3. The name of the author may not be used to endorse or promote products
19  * derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
22  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
24  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
30  * OF SUCH DAMAGE.
31  *
32  * Author: Dirk Ziegelmeier <dziegel@gmx.de>
33  */
34 
35 #include "lwip/apps/snmp_opts.h"
36 #include "lwip/ip_addr.h"
37 
38 #if LWIP_SNMP && SNMP_USE_RAW
39 
40 #include "lwip/udp.h"
41 #include "lwip/ip.h"
42 #include "snmp_msg.h"
43 
44 /* lwIP UDP receive callback function */
45 static void
46 snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port)
47 {
48  LWIP_UNUSED_ARG(arg);
49 
50  snmp_receive(pcb, p, addr, port);
51 
52  pbuf_free(p);
53 }
54 
55 err_t
56 snmp_sendto(void *handle, struct pbuf *p, const ip_addr_t *dst, u16_t port)
57 {
58  return udp_sendto((struct udp_pcb*)handle, p, dst, port);
59 }
60 
61 u8_t
62 snmp_get_local_ip_for_dst(void* handle, const ip_addr_t *dst, ip_addr_t *result)
63 {
64  struct udp_pcb* udp_pcb = (struct udp_pcb*)handle;
65  struct netif *dst_if;
66  const ip_addr_t* dst_ip;
67 
68  LWIP_UNUSED_ARG(udp_pcb); /* unused in case of IPV4 only configuration */
69 
70  ip_route_get_local_ip(IP_IS_V6_VAL(udp_pcb->local_ip), &udp_pcb->local_ip, dst, dst_if, dst_ip);
71 
72  if((dst_if != NULL) && (dst_ip != NULL)) {
73  ip_addr_copy(*result, *dst_ip);
74  return 1;
75  } else {
76  return 0;
77  }
78 }
79 
84 void
85 snmp_init(void)
86 {
87  struct udp_pcb *snmp_pcb = udp_new();
88  LWIP_ERROR("snmp_raw: no PCB", (snmp_pcb != NULL), return;);
89 
90  snmp_traps_handle = snmp_pcb;
91 
92  udp_recv(snmp_pcb, snmp_recv, (void *)SNMP_IN_PORT);
93  udp_bind(snmp_pcb, IP_ADDR_ANY, SNMP_IN_PORT);
94 }
95 
96 #endif /* LWIP_SNMP && SNMP_USE_RAW */
#define ip_route_get_local_ip(isipv6, src, dest, netif, ipaddr)
Definition: ip.h:302
#define NULL
Definition: usbd_def.h:53
u8_t pbuf_free(struct pbuf *p)
Definition: pbuf.c:652
#define ip_addr_copy(dest, src)
Definition: ip_addr.h:203
#define IP_IS_V6_VAL(ipaddr)
Definition: ip_addr.h:196
Definition: pbuf.h:108
s8_t err_t
Definition: err.h:47
Definition: netif.h:182
unsigned char u8_t
Definition: cc.h:38
ip6_addr_t ip_addr_t
Definition: ip_addr.h:194
#define LWIP_ERROR(message, expression, handler)
Definition: debug.h:89
#define LWIP_UNUSED_ARG(x)
Definition: arch.h:89
unsigned short u16_t
Definition: cc.h:40