Skip to content

Commit 7ac1262

Browse files
committed
Fix Linux build.
1 parent 8683ddc commit 7ac1262

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/kissnet.c

+14-14
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Maybe a single stereo audio interface is used for 2 radios.
9696
9797
+------------+ tcp 8001, all channels
9898
Radio A -------- | | -------------------------- Application A
99-
| direwolf |
99+
| direwolf |
100100
Radio B -------- | | -------------------------- Application B
101101
+------------+ tcp 8001, all channels
102102
@@ -110,11 +110,11 @@ Many people are using the work-around of two separate instances of direwolf.
110110
111111
+------------+ tcp 8001, KISS ch 0
112112
Radio A -------- | direwolf | -------------------------- Application A
113-
+------------+
113+
+------------+
114114
115115
+------------+ tcp 8002, KISS ch 0
116116
Radio B -------- | direwolf | -------------------------- Application B
117-
+------------+
117+
+------------+
118118
119119
120120
Or they might be using a single application that knows how to talk to multiple
@@ -127,7 +127,7 @@ Radio A -------- | direwolf | ------------------------
127127
-- Application
128128
+------------+ tcp 8002, KISS ch 0 /
129129
Radio B -------- | direwolf | ------------------------
130-
+------------+
130+
+------------+
131131
132132
Using two different instances of direwolf means more complex configuration
133133
and loss of cross-channel digipeating. It is possible to use a stereo
@@ -145,7 +145,7 @@ Now can use a single instance of direwolf.
145145
146146
+------------+ tcp 8001, KISS ch 0
147147
Radio A -------- | | -------------------------- Application A
148-
| direwolf |
148+
| direwolf |
149149
Radio B -------- | | -------------------------- Application B
150150
+------------+ tcp 8002, KISS ch 0
151151
@@ -446,7 +446,7 @@ static THREAD_F connect_listen_thread (void *arg)
446446

447447
#if DEBUG
448448
text_color_set(DW_COLOR_DEBUG);
449-
dw_printf("Binding to port %s ... \n", tcp_port_str);
449+
dw_printf("Binding to port %s ... \n", tcp_port_str);
450450
#endif
451451

452452
err = bind( listen_sock, ai->ai_addr, (int)ai->ai_addrlen);
@@ -465,7 +465,7 @@ static THREAD_F connect_listen_thread (void *arg)
465465

466466
#if DEBUG
467467
text_color_set(DW_COLOR_DEBUG);
468-
dw_printf("opened KISS socket as fd (%d) on port (%s) for stream i/o\n", listen_sock, tcp_port_str );
468+
dw_printf("opened KISS socket as fd (%d) on port (%s) for stream i/o\n", listen_sock, tcp_port_str );
469469
#endif
470470

471471
while (1) {
@@ -551,12 +551,12 @@ static THREAD_F connect_listen_thread (void *arg)
551551
setsockopt (listen_sock, SOL_SOCKET, SO_REUSEADDR, (const char *)&bcopt, 4);
552552

553553
sockaddr.sin_addr.s_addr = INADDR_ANY;
554-
sockaddr.sin_port = htons(kps->tcp_port);
554+
sockaddr.sin_port = htons(kps->tcp_port);
555555
sockaddr.sin_family = AF_INET;
556556

557557
#if DEBUG
558558
text_color_set(DW_COLOR_DEBUG);
559-
dw_printf("Binding to port %d ... \n", kps->tcp_port);
559+
dw_printf("Binding to port %d ... \n", kps->tcp_port);
560560
#endif
561561

562562
if (bind(listen_sock,(struct sockaddr*)&sockaddr,sizeof(sockaddr)) == -1) {
@@ -598,20 +598,20 @@ static THREAD_F connect_listen_thread (void *arg)
598598

599599
text_color_set(DW_COLOR_INFO);
600600
if (kps->chan == -1) {
601-
dw_printf("Ready to accept KISS TCP client application %d on port %s ...\n", client, tcp_port_str);
601+
dw_printf("Ready to accept KISS TCP client application %d on port %d ...\n", client, kps->tcp_port);
602602
}
603603
else {
604-
dw_printf("Ready to accept KISS TCP client application %d on port %s (radio channel %d) ...\n", client, tcp_port_str, kps->chan);
604+
dw_printf("Ready to accept KISS TCP client application %d on port %d (radio channel %d) ...\n", client, kps->tcp_port, kps->chan);
605605
}
606606

607607
kps->client_sock[client] = accept(listen_sock, (struct sockaddr*)(&sockaddr),&sockaddr_size);
608608

609609
text_color_set(DW_COLOR_INFO);
610610
if (kps->chan == -1) {
611-
dw_printf("\nAttached to KISS TCP client application %d on port %s ...\n\n", client, tcp_port_str);
611+
dw_printf("\nAttached to KISS TCP client application %d on port %d ...\n\n", client, kps->tcp_port);
612612
}
613613
else {
614-
dw_printf("\nAttached to KISS TCP client application %d on port %s (radio channel %d) ...\n\n", client, tcp_port_str, kps->chan);
614+
dw_printf("\nAttached to KISS TCP client application %d on port %d (radio channel %d) ...\n\n", client, kps->tcp_port, kps->chan);
615615
}
616616

617617
// Reset the state and buffer.
@@ -767,7 +767,7 @@ void kissnet_send_rec_packet (int chan, int kiss_cmd, unsigned char *fbuf, int f
767767
err = SOCK_SEND (kps->client_sock[client], kiss_buff, kiss_len);
768768
if (err <= 0) {
769769
text_color_set(DW_COLOR_ERROR);
770-
dw_printf ("\nError %d sending message to KISS client application %d on port %d. Closing connection.\n\n", WSAGetLastError(), client, kps->tcp_port);
770+
dw_printf ("\nError %d sending message to KISS client application %d on port %d. Closing connection.\n\n", err, client, kps->tcp_port);
771771
close (kps->client_sock[client]);
772772
kps->client_sock[client] = -1;
773773
}

0 commit comments

Comments
 (0)