Path: blob/a-new-beginning/SharedDependencies/Sources/libslirp/include/udp.h
2 views
/* SPDX-License-Identifier: BSD-3-Clause */1/*2* Copyright (c) 1982, 1986, 19933* The Regents of the University of California. All rights reserved.4*5* Redistribution and use in source and binary forms, with or without6* modification, are permitted provided that the following conditions7* are met:8* 1. Redistributions of source code must retain the above copyright9* notice, this list of conditions and the following disclaimer.10* 2. Redistributions in binary form must reproduce the above copyright11* notice, this list of conditions and the following disclaimer in the12* documentation and/or other materials provided with the distribution.13* 3. Neither the name of the University nor the names of its contributors14* may be used to endorse or promote products derived from this software15* without specific prior written permission.16*17* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND18* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE19* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE20* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE21* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL22* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS23* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)24* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT25* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY26* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF27* SUCH DAMAGE.28*29* @(#)udp.h 8.1 (Berkeley) 6/10/9330* udp.h,v 1.3 1994/08/21 05:27:41 paul Exp31*/3233#ifndef UDP_H34#define UDP_H3536#include "socket.h"3738#define UDP_TTL 0x60394041#ifdef RSTSLIRP4243/*44* Udp protocol header.45* Per RFC 768, September, 1981.46*/47struct udphdr {48uint16_t uh_sport; /* source port */49uint16_t uh_dport; /* destination port */50int16_t uh_ulen; /* udp length */51uint16_t uh_sum; /* udp checksum */52};5354#endif5556/*57* UDP kernel structures and variables.58*/59struct udpiphdr {60struct ipovly ui_i; /* overlaid ip structure */61struct udphdr ui_u; /* udp header */62};63#define ui_mbuf ui_i.ih_mbuf.mptr64#define ui_x1 ui_i.ih_x165#define ui_pr ui_i.ih_pr66#define ui_len ui_i.ih_len67#define ui_src ui_i.ih_src68#define ui_dst ui_i.ih_dst69#define ui_sport ui_u.uh_sport70#define ui_dport ui_u.uh_dport71#define ui_ulen ui_u.uh_ulen72#define ui_sum ui_u.uh_sum7374/*75* Names for UDP sysctl objects76*/77#define UDPCTL_CHECKSUM 1 /* checksum UDP packets */78#define UDPCTL_MAXID 27980struct mbuf;8182/* Called from slirp_init */83void udp_init(Slirp *);84/* Called from slirp_cleanup */85void udp_cleanup(Slirp *);86/* Process UDP datagram coming from the guest */87void udp_input(register struct mbuf *, int);88/* Create a host UDP socket, bound to this socket */89int udp_attach(struct socket *, unsigned short af);90/* Destroy socket */91void udp_detach(struct socket *);9293/* Listen for incoming UDP datagrams on this haddr+hport */94struct socket *udp_listen(Slirp *, uint32_t haddr, unsigned hport, uint32_t laddr, unsigned lport, int flags);95/* Listen for incoming UDP datagrams on this haddr */96struct socket *udpx_listen(Slirp *,97const struct sockaddr *haddr, socklen_t haddrlen,98const struct sockaddr *laddr, socklen_t laddrlen,99int flags);100/* Send UDP datagram to the guest */101int udp_output(struct socket *so, struct mbuf *m, struct sockaddr_in *saddr,102struct sockaddr_in *daddr, int iptos);103104/* Process UDPv6 datagram coming from the guest */105void udp6_input(register struct mbuf *);106/* Send UDPv6 datagram to the guest */107int udp6_output(struct socket *so, struct mbuf *m, struct sockaddr_in6 *saddr,108struct sockaddr_in6 *daddr);109110#endif111112113