1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/* unix sockaddr mashup, for libreswan
*
* Copyright (C) 2019 Andrew Cagney <cagney@gnu.org>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/lgpl-2.1.txt>.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
* License for more details.
*
*/
#ifndef IP_SOCKADDR_H
#define IP_SOCKADDR_H
#include <sys/socket.h> /* for struct sockaddr */
#include <netinet/in.h> /* for struct sockaddr_in */
#ifdef HAVE_INET6_IN6_H
#include <netinet6/in6.h> /* for struct sockaddr_in6 */
#endif
#include <ip_endpoint.h>
/*
* Size the sockaddr buffer big enough for all known
* alternatives. On linux, at least, this isn't true:
*
* passert(sizeof(struct sockaddr) >= sizeof(struct sockaddr_in));
* passert(sizeof(struct sockaddr) >= sizeof(struct sockaddr_in6));
*/
typedef struct {
socklen_t len;
union {
/* sa.sa_* */
struct sockaddr sa;
/* sin.sin_* */
struct sockaddr_in sin;
/* sin6.sin6_* */
struct sockaddr_in6 sin6;
} sa;
} ip_sockaddr;
extern const ip_sockaddr unset_sockaddr;
/*
* conversions
*
* if a port is needed then, presumably, it's an endpoint?
*/
ip_sockaddr sockaddr_from_address(const ip_address address);
ip_sockaddr sockaddr_from_address_port(const ip_address address, const ip_port port);
ip_sockaddr sockaddr_from_endpoint(const ip_endpoint endpoint);
err_t sockaddr_to_address_port(const struct sockaddr *sa, size_t len,
ip_address *address, ip_port *port);
#endif
|