Skip to content

Commit 667e9ca

Browse files
committed
Quick hack until I can handle multiple KISS TCP ports properly.
1 parent 7ac1262 commit 667e9ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/dns_sd_avahi.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ static void *avahi_mainloop(void *arg)
220220
void dns_sd_announce (struct misc_config_s *mc)
221221
{
222222
text_color_set(DW_COLOR_DEBUG);
223-
kiss_port = mc->kiss_port;
223+
//kiss_port = mc->kiss_port; // now an array.
224+
kiss_port = mc->kiss_port[0]; // FIXME: Quick hack until I can handle multiple TCP ports properly.
224225

225226
int error;
226227

src/dns_sd_macos.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ static void registerServiceCallBack(DNSServiceRef sdRef, DNSServiceFlags flags,
5959

6060
void dns_sd_announce (struct misc_config_s *mc)
6161
{
62-
int kiss_port = mc->kiss_port;
62+
//int kiss_port = mc->kiss_port; // now an array.
63+
int kiss_port = mc->kiss_port[0]; // FIXME: Quick hack until I can handle multiple TCP ports properly.
6364

6465
if (mc->dns_sd_name[0]) {
6566
name = strdup(mc->dns_sd_name);

0 commit comments

Comments
 (0)