Skip to content

Commit e41a7f2

Browse files
committed
update comment
1 parent cea02b5 commit e41a7f2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/server.c

+7-1
Original file line numberDiff line numberDiff line change
@@ -1780,11 +1780,17 @@ static THREAD_F cmd_listen_thread (void *arg)
17801780
// 00=Port 1
17811781
// 16=Port 2
17821782
//
1783-
// I don't know what that means; we already a port number in the header.
1783+
// The seems to be redundant; we already a port number in the header.
17841784
// Anyhow, the original code here added one to cmd.data to get the
17851785
// first byte of the frame. Unfortunately, it did not subtract one from
17861786
// cmd.hdr.data_len so we ended up sending an extra byte.
17871787

1788+
// TODO: Right now I just use the port (channel) number in the header.
1789+
// What if the second one is inconsistent?
1790+
// - Continue to ignore port number at beginning of data?
1791+
// - Use second one instead?
1792+
// - Error message if a mismatch?
1793+
17881794
memset (&alevel, 0xff, sizeof(alevel));
17891795
pp = ax25_from_frame ((unsigned char *)cmd.data+1, data_len - 1, alevel);
17901796

0 commit comments

Comments
 (0)