mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
Get detailed addressinfo from the parsed URL for future raw socket usage when possible. IPV4 only for now.
This commit is contained in:
parent
ee3b7865e2
commit
58873c1dfa
@ -554,7 +554,8 @@ static char *set_url(char *arg)
|
||||
|
||||
arg = get_proxy(arg, pool);
|
||||
|
||||
extract_sockaddr(pool, arg);
|
||||
if (!extract_sockaddr(pool, arg))
|
||||
return "Failed to extract address from parsed url";
|
||||
|
||||
opt_set_charp(arg, &pool->rpc_url);
|
||||
if (strncmp(arg, "http://", 7) &&
|
||||
|
2
miner.h
2
miner.h
@ -813,7 +813,7 @@ struct pool {
|
||||
struct cgminer_pool_stats cgminer_pool_stats;
|
||||
|
||||
SOCKETTYPE sock;
|
||||
struct sockaddr_in server, client;
|
||||
struct sockaddr_in *server, client;
|
||||
};
|
||||
|
||||
#define GETWORK_MODE_TESTPOOL 'T'
|
||||
|
43
util.c
43
util.c
@ -796,12 +796,12 @@ double tdiff(struct timeval *end, struct timeval *start)
|
||||
return end->tv_sec - start->tv_sec + (end->tv_usec - start->tv_usec) / 1000000.0;
|
||||
}
|
||||
|
||||
void extract_sockaddr(struct pool *pool, char *url)
|
||||
bool extract_sockaddr(struct pool *pool, char *url)
|
||||
{
|
||||
char *url_begin, *url_end, *url_address;
|
||||
char *port_start, port80[3] = "80";
|
||||
char *url_begin, *url_end, *port_start;
|
||||
char *url_address, *port;
|
||||
struct addrinfo hints, *res;
|
||||
size_t url_len, port_len;
|
||||
size_t url_len, port_len = 0;
|
||||
|
||||
url_begin = strstr(url, "//");
|
||||
if (!url_begin)
|
||||
@ -810,19 +810,38 @@ void extract_sockaddr(struct pool *pool, char *url)
|
||||
url_begin += 2;
|
||||
url_end = strstr(url_begin, ":");
|
||||
if (url_end) {
|
||||
url_len = url_end - 1 - url_begin;
|
||||
url_len = url_end - url_begin;
|
||||
port_len = strlen(url_begin) - url_len - 1;
|
||||
if (port_len <= 1)
|
||||
return;
|
||||
if (port_len < 1)
|
||||
return false;
|
||||
port_start = url_end + 1;
|
||||
} else {
|
||||
} else
|
||||
url_len = strlen(url_begin);
|
||||
port_start = port80;
|
||||
}
|
||||
if (url_len <= 1)
|
||||
return;
|
||||
|
||||
if (url_len < 1)
|
||||
return false;
|
||||
|
||||
url_address = alloca(url_len + 1);
|
||||
sprintf(url_address, "%.*s", url_len, url_begin);
|
||||
|
||||
if (port_len) {
|
||||
port = alloca(port_len + 1);
|
||||
sprintf(port, "%.*s", port_len, port_start);
|
||||
} else {
|
||||
port = alloca(4);
|
||||
strcpy(port, "80");
|
||||
}
|
||||
|
||||
memset(&hints, 0, sizeof(struct addrinfo));
|
||||
hints.ai_family = AF_UNSPEC;
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
hints.ai_protocol = IPPROTO_TCP;
|
||||
|
||||
if (getaddrinfo(url_address, port, &hints, &res)) {
|
||||
applog(LOG_DEBUG, "Failed to extract sock addr");
|
||||
return false;
|
||||
}
|
||||
|
||||
pool->server = (struct sockaddr_in *)res->ai_addr;
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user