2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2021-06-16 09:22:16 +02:00
|
|
|
* apps/examples/udp/udp.h
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-06-19 17:46:40 +02:00
|
|
|
#ifndef __EXAMPLES_UDP_UDP_H
|
|
|
|
#define __EXAMPLES_UDP_UDP_H
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-22 22:30:23 +01:00
|
|
|
#ifdef EXAMPLES_UDP_HOST
|
2011-03-20 19:18:19 +01:00
|
|
|
#else
|
|
|
|
# include <debug.h>
|
|
|
|
#endif
|
|
|
|
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2015-10-02 22:06:11 +02:00
|
|
|
* Pre-processor Definitions
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-22 22:30:23 +01:00
|
|
|
#ifdef EXAMPLES_UDP_HOST
|
2020-04-03 21:10:52 +02:00
|
|
|
/* HTONS/L macros are unique to NuttX */
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2020-04-03 21:10:52 +02:00
|
|
|
# undef HTONS
|
|
|
|
# undef HTONL
|
|
|
|
# define HTONS(ns) htons(ns)
|
|
|
|
# define HTONL(nl) htonl(nl)
|
2017-06-19 21:29:58 +02:00
|
|
|
|
2020-04-01 18:29:19 +02:00
|
|
|
# undef NTOHS
|
|
|
|
# undef NTOHL
|
2020-04-03 21:10:52 +02:00
|
|
|
# define NTOHS(hs) ntohs(hs)
|
|
|
|
# define NTOHL(hl) ntohl(hl)
|
|
|
|
|
2017-06-19 21:29:58 +02:00
|
|
|
# define FAR
|
2011-03-20 19:18:19 +01:00
|
|
|
#endif
|
|
|
|
|
2015-01-22 22:30:23 +01:00
|
|
|
#ifdef CONFIG_EXAMPLES_UDP_IPv6
|
|
|
|
# define AF_INETX AF_INET6
|
|
|
|
# define PF_INETX PF_INET6
|
|
|
|
#else
|
|
|
|
# define AF_INETX AF_INET
|
|
|
|
# define PF_INETX PF_INET
|
|
|
|
#endif
|
|
|
|
|
2017-06-23 20:21:13 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_UDP_SERVER_PORTNO
|
|
|
|
# define CONFIG_EXAMPLES_UDP_SERVER_PORTNO 5471
|
2017-06-20 18:40:09 +02:00
|
|
|
#endif
|
|
|
|
|
2017-06-23 20:21:13 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_UDP_CLIENT_PORTNO
|
|
|
|
# define CONFIG_EXAMPLES_UDP_CLIENT_PORTNO 5472
|
2017-06-20 18:40:09 +02:00
|
|
|
#endif
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
#define ASCIISIZE (0x7f - 0x20)
|
|
|
|
#define SENDSIZE (ASCIISIZE+1)
|
|
|
|
|
2017-06-19 21:29:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_EXAMPLES_UDP_IPv6
|
2020-04-01 18:31:11 +02:00
|
|
|
extern uint16_t g_udpserver_ipv6[8];
|
2017-06-19 21:29:58 +02:00
|
|
|
#else
|
2020-04-01 18:31:11 +02:00
|
|
|
extern uint32_t g_udpserver_ipv4;
|
2017-06-19 21:29:58 +02:00
|
|
|
#endif
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-06-19 17:46:40 +02:00
|
|
|
#ifdef CONFIG_EXAMPLES_UDP_NETINIT
|
2017-06-25 17:15:27 +02:00
|
|
|
int udp_netinit(void);
|
2017-06-19 17:46:40 +02:00
|
|
|
#endif
|
|
|
|
|
2017-06-25 17:15:27 +02:00
|
|
|
void udp_cmdline(int argc, char **argv);
|
|
|
|
void udp_client(void);
|
|
|
|
void udp_server(void);
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2017-06-19 17:46:40 +02:00
|
|
|
#endif /* __EXAMPLES_UDP_UDP_H */
|