diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-30 03:25:35 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-30 03:25:35 -0400 |
| commit | ddfe09f3b8336630dd0f87e446306bc1e012f20b (patch) | |
| tree | ecffd52c482e987099b7a03383ec62763009e4fb /src/nio.h | |
| parent | 28c0a056ce806a357371d7102fb25d72e358ff09 (diff) | |
| download | fujinet-chat-ddfe09f3b8336630dd0f87e446306bc1e012f20b.tar.gz | |
Trim down nio API (no parameter passing), now at 4852 free.
Diffstat (limited to 'src/nio.h')
| -rw-r--r-- | src/nio.h | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -25,16 +25,8 @@ char nopen(void); char nclose(void); char nstatus(void); -char nread(char *buf, unsigned short len); -char nwrite(char *buf, unsigned short len); +char nread_rxbuf(void); +char nwrite_txbuf(void); char nreset(void); -/** - * Send username and password credentials - * @param devicespec - The devicespec. - * @param login - The username to send - * @param password - The password to send - */ -// unsigned char nlogin(char* devicespec, char* login, char* password); - #endif /* NIO_H */ |
