@@ -1117,16 +1117,17 @@ void app_process_rec_packet (int chan, int subchan, int slice, packet_t pp, alev
1117
1117
1118
1118
/* Send to another application if connected. */
1119
1119
// TODO: Put a wrapper around this so we only call one function to send by all methods.
1120
+ // We see the same sequence in tt_user.c.
1120
1121
1121
1122
int flen ;
1122
1123
unsigned char fbuf [AX25_MAX_PACKET_LEN ];
1123
1124
1124
1125
flen = ax25_pack (pp , fbuf );
1125
1126
1126
- server_send_rec_packet (chan , pp , fbuf , flen ); // AGW net protocol
1127
- kissnet_send_rec_packet (chan , fbuf , flen , -1 ); // KISS TCP
1128
- kissserial_send_rec_packet (chan , fbuf , flen , -1 ); // KISS serial port
1129
- kisspt_send_rec_packet (chan , fbuf , flen , -1 ); // KISS pseudo terminal
1127
+ server_send_rec_packet (chan , pp , fbuf , flen ); // AGW net protocol
1128
+ kissnet_send_rec_packet (chan , KISS_CMD_DATA_FRAME , fbuf , flen , -1 ); // KISS TCP
1129
+ kissserial_send_rec_packet (chan , KISS_CMD_DATA_FRAME , fbuf , flen , -1 ); // KISS serial port
1130
+ kisspt_send_rec_packet (chan , KISS_CMD_DATA_FRAME , fbuf , flen , -1 ); // KISS pseudo terminal
1130
1131
1131
1132
/*
1132
1133
* If it came from DTMF decoder, send it to APRStt gateway.
0 commit comments