Incorporated geneb's fixes from https://github.com/geneb/tcpser.
This commit is contained in:
parent
18f40e77c4
commit
72eeccd0d4
12
src/init.c
12
src/init.c
@ -40,9 +40,8 @@ void print_help(char *name)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int init(int argc,
|
||||
char **argv,
|
||||
modem_config cfg[], int max_modem, int *port, char *all_busy, int all_busy_len)
|
||||
int init(int argc, char **argv, modem_config cfg[], int max_modem, char **ip_addr,
|
||||
int *port, char *all_busy, int all_busy_len)
|
||||
{
|
||||
int i = 0;
|
||||
int j = 0;
|
||||
@ -110,7 +109,12 @@ int init(int argc,
|
||||
cfg[i].invert_dcd = TRUE;
|
||||
break;
|
||||
case 'p':
|
||||
*port = (atoi(optarg));
|
||||
if (strstr(optarg, ":") > 0) {
|
||||
*ip_addr = strtok(optarg, ":");
|
||||
*port = (atoi(strtok(NULL,":")));
|
||||
}
|
||||
else
|
||||
*port = (atoi(optarg));
|
||||
break;
|
||||
case 'n':
|
||||
tok = strtok(optarg, "=");
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
#include "modem_core.h"
|
||||
|
||||
void print_help(char *name);
|
||||
int init(int argc,
|
||||
char **argv,
|
||||
modem_config cfg[], int max_modem, int *port, char *all_busy, int all_busy_len);
|
||||
extern void print_help(char *name);
|
||||
extern int init(int argc, char **argv, modem_config cfg[], int max_modem, char **ip_addr,
|
||||
int *port, char *all_busy, int all_busy_len);
|
||||
|
11
src/ip.c
11
src/ip.c
@ -11,7 +11,7 @@
|
||||
|
||||
const int BACK_LOG = 5;
|
||||
|
||||
int ip_init_server_conn(int port)
|
||||
int ip_init_server_conn(char *ip_addr, int port)
|
||||
{
|
||||
int sSocket = 0, on = 0, rc = 0;
|
||||
struct sockaddr_in serverName = { 0 };
|
||||
@ -31,7 +31,7 @@ int ip_init_server_conn(int port)
|
||||
* turn off bind address checking, and allow
|
||||
* port numbers to be reused - otherwise
|
||||
* the TIME_WAIT phenomenon will prevent
|
||||
* binding to these addreG.
|
||||
* binding to these addresses.
|
||||
*/
|
||||
|
||||
on = 1;
|
||||
@ -42,11 +42,16 @@ int ip_init_server_conn(int port)
|
||||
ELOG(LOG_ERROR, "bind address checking could not be turned off");
|
||||
}
|
||||
|
||||
serverName.sin_addr.s_addr = htonl(INADDR_ANY);
|
||||
if (ip_addr != NULL) /* gwb */
|
||||
serverName.sin_addr.s_addr = inet_addr(ip_addr);
|
||||
else
|
||||
serverName.sin_addr.s_addr = htonl(INADDR_ANY);
|
||||
serverName.sin_family = AF_INET;
|
||||
|
||||
/* network-order */
|
||||
serverName.sin_port = htons(port);
|
||||
if (ip_addr != NULL ) /* gwb */
|
||||
LOG(LOG_DEBUG, "Using specified ip address %s", ip_addr);
|
||||
|
||||
LOG(LOG_DEBUG, "Binding server socket to port %d", port);
|
||||
rc = bind(sSocket, (struct sockaddr *) &serverName, sizeof(serverName)
|
||||
|
14
src/ip.h
14
src/ip.h
@ -6,12 +6,12 @@
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
int ip_init(void);
|
||||
int ip_init_server_conn(int port);
|
||||
int ip_connect(char addy[]);
|
||||
int ip_accept(int sSocket);
|
||||
int ip_disconnect(int fd);
|
||||
int ip_write(int fd, char *data, int len);
|
||||
int ip_read(int fd, char *data, int len);
|
||||
extern int ip_init(void);
|
||||
extern int ip_init_server_conn(char *ip_addr, int port);
|
||||
extern int ip_connect(char addy[]);
|
||||
extern int ip_accept(int sSocket);
|
||||
extern int ip_disconnect(int fd);
|
||||
extern int ip_write(int fd, char *data, int len);
|
||||
extern int ip_read(int fd, char *data, int len);
|
||||
|
||||
#endif
|
||||
|
@ -93,7 +93,7 @@ int ip232_init_conn(modem_config *cfg)
|
||||
LOG_ENTER();
|
||||
LOG(LOG_INFO, "Opening ip232 device");
|
||||
port = atoi(cfg->dce_data.tty);
|
||||
rc = ip_init_server_conn(port);
|
||||
rc = ip_init_server_conn("", port);
|
||||
if (rc < 0) {
|
||||
ELOG(LOG_FATAL, "Could not initialize ip232 server socket");
|
||||
exit(-1);
|
||||
|
@ -76,6 +76,14 @@ int line_connect(modem_config *cfg)
|
||||
if (cfg->line_data.fd > -1) {
|
||||
LOG(LOG_ALL, "Connected to %s", addy);
|
||||
cfg->line_data.valid_conn = TRUE;
|
||||
/* we need to let the other end know that our end will
|
||||
* handle the echo - otherwise "true" telnet clients like
|
||||
* those that come with Linux & Windows will echo characters
|
||||
* typed and you'll end up with doubled characters if the remote
|
||||
* host is echoing as well...
|
||||
* - gwb
|
||||
*/
|
||||
send_nvt_command(cfg->line_data.fd, &cfg->line_data.nvt_data, NVT_WILL, NVT_OPT_ECHO);
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
|
@ -23,6 +23,7 @@ int main(int argc, char *argv[])
|
||||
int modem_count;
|
||||
int port = 0;
|
||||
|
||||
char *ip_addr = NULL; /* gwb */
|
||||
char all_busy[255];
|
||||
|
||||
pthread_t thread_id;
|
||||
@ -51,9 +52,9 @@ int main(int argc, char *argv[])
|
||||
|
||||
signal(SIGIO, SIG_IGN); /* Some Linux variant term on SIGIO by default */
|
||||
|
||||
modem_count = init(argc, argv, cfg, 64, &port, all_busy, sizeof(all_busy));
|
||||
modem_count = init(argc, argv, cfg, 64, &ip_addr, &port,all_busy,sizeof(all_busy)); /* gwb */
|
||||
|
||||
sSocket = ip_init_server_conn(port);
|
||||
sSocket = ip_init_server_conn(ip_addr, port);
|
||||
|
||||
for (i = 0; i < modem_count; i++) {
|
||||
if (-1 == pipe(cfg[i].data.mp[0])) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user