Skip to content

Commit

Permalink
Made rest of Microsoft-specific chat optional.
Browse files Browse the repository at this point in the history
Made code rest of the code in the SLIP driver optional that takes care of the Microsoft-specific CLIENT / SERVER / CLIENTSERVER chat.
  • Loading branch information
oliverschmidt committed Feb 23, 2017
1 parent a26ee64 commit be9711d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/dev/slip.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,13 @@ slip_input_byte(unsigned char c)
}
rxbuf[cur_end] = c;

#ifdef SLIP_CONF_MICROSOFT_CHAT
/* There could be a separate poll routine for this. */
if(c == 'T' && rxbuf[begin] == 'C') {
process_poll(&slip_process);
return 1;
}
#endif /* SLIP_CONF_MICROSOFT_CHAT */

if(c == SLIP_END) {
/*
Expand Down

0 comments on commit be9711d

Please sign in to comment.