mirror of
https://github.com/solemnwarning/ipxwrapper
synced 2024-12-30 16:45:37 +01:00
Moved shared configuration stuff into config.h
This commit is contained in:
parent
6167cdcb7e
commit
84527b7eda
38
src/config.h
Normal file
38
src/config.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/* ipxwrapper - Configuration 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 IPX_CONFIG_H
|
||||||
|
#define IPX_CONFIG_H
|
||||||
|
|
||||||
|
#define DEFAULT_PORT 54792
|
||||||
|
#define TTL 60
|
||||||
|
|
||||||
|
struct reg_value {
|
||||||
|
unsigned char ipx_net[4];
|
||||||
|
unsigned char ipx_node[6];
|
||||||
|
unsigned char enabled;
|
||||||
|
unsigned char primary;
|
||||||
|
} __attribute__((__packed__));
|
||||||
|
|
||||||
|
struct reg_global {
|
||||||
|
uint16_t udp_port;
|
||||||
|
unsigned char w95_bug;
|
||||||
|
unsigned char bcast_all;
|
||||||
|
unsigned char filter;
|
||||||
|
} __attribute__((__packed__));
|
||||||
|
|
||||||
|
#endif /* !IPX_CONFIG_H */
|
@ -25,7 +25,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#define PORT 54792
|
#include "config.h"
|
||||||
|
|
||||||
#define ID_NIC_LIST 1
|
#define ID_NIC_LIST 1
|
||||||
#define ID_NIC_ENABLE 2
|
#define ID_NIC_ENABLE 2
|
||||||
@ -54,20 +54,6 @@ struct iface {
|
|||||||
bool primary;
|
bool primary;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct reg_value {
|
|
||||||
unsigned char ipx_net[4];
|
|
||||||
unsigned char ipx_node[6];
|
|
||||||
unsigned char enabled;
|
|
||||||
unsigned char primary;
|
|
||||||
} __attribute__((__packed__));
|
|
||||||
|
|
||||||
struct reg_global {
|
|
||||||
uint16_t udp_port;
|
|
||||||
unsigned char w95_bug;
|
|
||||||
unsigned char bcast_all;
|
|
||||||
unsigned char filter;
|
|
||||||
} __attribute__((__packed__));
|
|
||||||
|
|
||||||
typedef std::vector<iface> iface_list;
|
typedef std::vector<iface> iface_list;
|
||||||
|
|
||||||
static void addr_input_dialog(const char *desc, char *dest, int size);
|
static void addr_input_dialog(const char *desc, char *dest, int size);
|
||||||
@ -413,7 +399,7 @@ int main() {
|
|||||||
DWORD gsize = sizeof(global_conf);
|
DWORD gsize = sizeof(global_conf);
|
||||||
|
|
||||||
if(!regkey || RegQueryValueEx(regkey, "global", NULL, NULL, (BYTE*)&global_conf, &gsize) != ERROR_SUCCESS || gsize != sizeof(global_conf)) {
|
if(!regkey || RegQueryValueEx(regkey, "global", NULL, NULL, (BYTE*)&global_conf, &gsize) != ERROR_SUCCESS || gsize != sizeof(global_conf)) {
|
||||||
global_conf.udp_port = PORT;
|
global_conf.udp_port = DEFAULT_PORT;
|
||||||
global_conf.w95_bug = 1;
|
global_conf.w95_bug = 1;
|
||||||
global_conf.bcast_all = 0;
|
global_conf.bcast_all = 0;
|
||||||
global_conf.filter = 1;
|
global_conf.filter = 1;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ipxwrapper - Library header
|
/* ipxwrapper - Library header
|
||||||
* Copyright (C) 2008 Daniel Collins <solemnwarning@solemnwarning.net>
|
* Copyright (C) 2008-2011 Daniel Collins <solemnwarning@solemnwarning.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
* 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
|
* under the terms of the GNU General Public License version 2 as published by
|
||||||
@ -23,8 +23,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define DEFAULT_PORT 54792
|
#include "config.h"
|
||||||
#define TTL 60
|
|
||||||
|
|
||||||
#define DEBUG "ipxwrapper.log"
|
#define DEBUG "ipxwrapper.log"
|
||||||
|
|
||||||
@ -131,21 +130,6 @@ struct ipx_host {
|
|||||||
ipx_host *next;
|
ipx_host *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface settings stored in registry */
|
|
||||||
struct reg_value {
|
|
||||||
unsigned char ipx_net[4];
|
|
||||||
unsigned char ipx_node[6];
|
|
||||||
unsigned char enabled;
|
|
||||||
unsigned char primary;
|
|
||||||
} __attribute__((__packed__));
|
|
||||||
|
|
||||||
struct reg_global {
|
|
||||||
uint16_t udp_port;
|
|
||||||
unsigned char w95_bug;
|
|
||||||
unsigned char bcast_all;
|
|
||||||
unsigned char filter;
|
|
||||||
} __attribute__((__packed__));
|
|
||||||
|
|
||||||
extern ipx_socket *sockets;
|
extern ipx_socket *sockets;
|
||||||
extern ipx_nic *nics;
|
extern ipx_nic *nics;
|
||||||
extern ipx_host *hosts;
|
extern ipx_host *hosts;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user