Fix add onion logic to handle 127.13.3.7 binding
This commit is contained in:
parent
879f87fd7f
commit
6e083d2db2
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ int tor_ctl_add_onion(struct tor_ctl* ctx, struct tor_os_str* tos, uint16_t* por
|
|||
|
||||
/* Add onion services loaded from file */
|
||||
for (int i = 0; i < tos->filled; i++) {
|
||||
fprintf(ctx->wsock, "add_onion %s Port=%d\n", tos->keys[i].priv, port[i]);
|
||||
fprintf(ctx->wsock, "add_onion %s Port=%d,127.13.3.7:%d\n", tos->keys[i].priv, port[i], port[i]);
|
||||
fscanf(ctx->rsock, "%d", &err);
|
||||
if (err != 250) {
|
||||
printf("err: %d\n", err);
|
||||
|
|
Loading…
Reference in a new issue