summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index da4b338..0dcfa70 100644
--- a/main.c
+++ b/main.c
@@ -22,10 +22,10 @@ int main(int argc, char *argv[]) {
l = flx_local_addr_source_new(flx);
flx_address_parse("127.0.0.1", AF_INET, &a);
- flx_server_add_address(flx, 0, 0, "localhost", &a);
+ flx_server_add_address(flx, 0, 0, AF_UNSPEC, "localhost", &a);
flx_address_parse("::1", AF_INET6, &a);
- flx_server_add_address(flx, 0, 0, "ip6-localhost", &a);
+ flx_server_add_address(flx, 0, 0, AF_UNSPEC, "ip6-localhost", &a);
g_timeout_add(1000, timeout, NULL);