Fix add onion logic to handle 127.13.3.7 binding

This commit is contained in:
Quentin Dufour 2019-02-20 09:06:08 +01:00
parent 879f87fd7f
commit 6e083d2db2

View file

@ -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);