mirror of
https://github.com/solemnwarning/ipxwrapper
synced 2024-12-30 16:45:37 +01:00
79 lines
2.2 KiB
C
79 lines
2.2 KiB
C
/* IPXWrapper - Interface header
|
|
* Copyright (C) 2011 Daniel Collins <solemnwarning@solemnwarning.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*
|
|
* This program 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
|
|
* this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef IPXWRAPPER_INTERFACE_H
|
|
#define IPXWRAPPER_INTERFACE_H
|
|
|
|
#include <iphlpapi.h>
|
|
#include <stdint.h>
|
|
#include <utlist.h>
|
|
|
|
#include "common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define WILDCARD_IFACE_HWADDR addr48_in((unsigned char[]){0x00,0x00,0x00,0x00,0x00,0x00})
|
|
|
|
typedef struct ipx_interface_ip ipx_interface_ip_t;
|
|
|
|
struct ipx_interface_ip {
|
|
uint32_t ipaddr;
|
|
uint32_t netmask;
|
|
uint32_t bcast;
|
|
|
|
ipx_interface_ip_t *prev;
|
|
ipx_interface_ip_t *next;
|
|
};
|
|
|
|
typedef struct ipx_interface ipx_interface_t;
|
|
|
|
struct ipx_interface {
|
|
addr32_t ipx_net;
|
|
addr48_t ipx_node;
|
|
|
|
ipx_interface_ip_t *ipaddr;
|
|
|
|
ipx_interface_t *prev;
|
|
ipx_interface_t *next;
|
|
};
|
|
|
|
IP_ADAPTER_INFO *load_sys_interfaces(void);
|
|
ipx_interface_t *load_ipx_interfaces(void);
|
|
|
|
ipx_interface_t *copy_ipx_interface(const ipx_interface_t *src);
|
|
void free_ipx_interface(ipx_interface_t *iface);
|
|
|
|
ipx_interface_t *copy_ipx_interface_list(const ipx_interface_t *src);
|
|
void free_ipx_interface_list(ipx_interface_t **list);
|
|
|
|
void ipx_interfaces_init(void);
|
|
void ipx_interfaces_cleanup(void);
|
|
|
|
ipx_interface_t *get_ipx_interfaces(void);
|
|
ipx_interface_t *ipx_interface_by_addr(addr32_t net, addr48_t node);
|
|
ipx_interface_t *ipx_interface_by_subnet(uint32_t ipaddr);
|
|
ipx_interface_t *ipx_interface_by_index(int index);
|
|
int ipx_interface_count(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* !IPXWRAPPER_INTERFACE_H */
|