36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
/*
|
|
* struct_addr_union.h
|
|
* This file is part of NetworkInador
|
|
*
|
|
* Copyright (C) 2023 - Félix Arreola Rodríguez
|
|
*
|
|
* NetworkInador is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* NetworkInador 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with NetworkInador; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef __STRUCT_ADDR_UNION_H__
|
|
#define __STRUCT_ADDR_UNION_H__
|
|
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
|
|
typedef union {
|
|
struct in_addr v4;
|
|
struct in6_addr v6;
|
|
} struct_addr;
|
|
|
|
#endif /* __STRUCT_ADDR_UNION_H__ */
|
|
|