@@ -96,7 +96,7 @@ Maybe a single stereo audio interface is used for 2 radios.
96
96
97
97
+------------+ tcp 8001, all channels
98
98
Radio A -------- | | -------------------------- Application A
99
- | direwolf |
99
+ | direwolf |
100
100
Radio B -------- | | -------------------------- Application B
101
101
+------------+ tcp 8001, all channels
102
102
@@ -110,11 +110,11 @@ Many people are using the work-around of two separate instances of direwolf.
110
110
111
111
+------------+ tcp 8001, KISS ch 0
112
112
Radio A -------- | direwolf | -------------------------- Application A
113
- +------------+
113
+ +------------+
114
114
115
115
+------------+ tcp 8002, KISS ch 0
116
116
Radio B -------- | direwolf | -------------------------- Application B
117
- +------------+
117
+ +------------+
118
118
119
119
120
120
Or they might be using a single application that knows how to talk to multiple
@@ -127,7 +127,7 @@ Radio A -------- | direwolf | ------------------------
127
127
-- Application
128
128
+------------+ tcp 8002, KISS ch 0 /
129
129
Radio B -------- | direwolf | ------------------------
130
- +------------+
130
+ +------------+
131
131
132
132
Using two different instances of direwolf means more complex configuration
133
133
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.
145
145
146
146
+------------+ tcp 8001, KISS ch 0
147
147
Radio A -------- | | -------------------------- Application A
148
- | direwolf |
148
+ | direwolf |
149
149
Radio B -------- | | -------------------------- Application B
150
150
+------------+ tcp 8002, KISS ch 0
151
151
@@ -446,7 +446,7 @@ static THREAD_F connect_listen_thread (void *arg)
446
446
447
447
#if DEBUG
448
448
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 );
450
450
#endif
451
451
452
452
err = bind ( listen_sock , ai -> ai_addr , (int )ai -> ai_addrlen );
@@ -465,7 +465,7 @@ static THREAD_F connect_listen_thread (void *arg)
465
465
466
466
#if DEBUG
467
467
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 );
469
469
#endif
470
470
471
471
while (1 ) {
@@ -551,12 +551,12 @@ static THREAD_F connect_listen_thread (void *arg)
551
551
setsockopt (listen_sock , SOL_SOCKET , SO_REUSEADDR , (const char * )& bcopt , 4 );
552
552
553
553
sockaddr .sin_addr .s_addr = INADDR_ANY ;
554
- sockaddr .sin_port = htons (kps -> tcp_port );
554
+ sockaddr .sin_port = htons (kps -> tcp_port );
555
555
sockaddr .sin_family = AF_INET ;
556
556
557
557
#if DEBUG
558
558
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 );
560
560
#endif
561
561
562
562
if (bind (listen_sock ,(struct sockaddr * )& sockaddr ,sizeof (sockaddr )) == -1 ) {
@@ -598,20 +598,20 @@ static THREAD_F connect_listen_thread (void *arg)
598
598
599
599
text_color_set (DW_COLOR_INFO );
600
600
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 );
602
602
}
603
603
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 );
605
605
}
606
606
607
607
kps -> client_sock [client ] = accept (listen_sock , (struct sockaddr * )(& sockaddr ),& sockaddr_size );
608
608
609
609
text_color_set (DW_COLOR_INFO );
610
610
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 );
612
612
}
613
613
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 );
615
615
}
616
616
617
617
// Reset the state and buffer.
@@ -767,7 +767,7 @@ void kissnet_send_rec_packet (int chan, int kiss_cmd, unsigned char *fbuf, int f
767
767
err = SOCK_SEND (kps -> client_sock [client ], kiss_buff , kiss_len );
768
768
if (err <= 0 ) {
769
769
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 );
771
771
close (kps -> client_sock [client ]);
772
772
kps -> client_sock [client ] = -1 ;
773
773
}
0 commit comments