You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config.h
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -60,9 +60,17 @@ struct misc_config_s {
60
60
// As an experiment, let's see if making the TCP send buffer larger helps.
61
61
62
62
intkiss_copy; /* Data from network KISS client is copied to all others. */
63
-
intenable_kiss_pt; /* Enable pseudo terminal for KISS. */
64
-
/* Want this to be off by default because it hangs */
65
-
/* after a while if nothing is reading from other end. */
63
+
64
+
intnum_kiss_pty; /* Number of pseudo terminals defined for KISS clients. Maximum MAX_KISS_PTY. */
65
+
/* i.e. Number of elements used in following array. */
66
+
67
+
intkiss_pty_chan[MAX_KISS_PTY]; /* Normally -1 meaning convey all channels. */
68
+
/* It is also possible to associate the pty with a single channel to appease */
69
+
/* old applications that don't know how to deal with multi-port TNCs which */
70
+
/* existed back in the 1990s. */
71
+
72
+
/* Frames received from channel n would go to client app with 4 bit kiss channel field set to 0. *//* For KISS frames from client, the channel would be ignored, and it would be transmitted to channel n. *//* symlink /tmp/kisstnc{n} */
0 commit comments