projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46506b7
)
Fix a bug that caused tinc to ignore all but the last listening socket.
author
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 21 Feb 2012 12:31:21 +0000
(13:31 +0100)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 21 Feb 2012 12:31:21 +0000
(13:31 +0100)
src/net_setup.c
patch
|
blob
|
history
diff --git
a/src/net_setup.c
b/src/net_setup.c
index
dfed7e5
..
299e372
100644
(file)
--- a/
src/net_setup.c
+++ b/
src/net_setup.c
@@
-580,6
+580,7
@@
static bool setup_myself(void) {
/* Open sockets */
+ listen_sockets = 0;
cfg = lookup_config(config_tree, "BindToAddress");
do {
@@
-601,9
+602,12
@@
static bool setup_myself(void) {
return false;
}
- listen_sockets = 0;
-
for(aip = ai; aip; aip = aip->ai_next) {
+ if(listen_sockets >= MAXSOCKETS) {
+ logger(LOG_ERR, "Too many listening sockets");
+ return false;
+ }
+
listen_socket[listen_sockets].tcp =
setup_listen_socket((sockaddr_t *) aip->ai_addr);