aboutsummaryrefslogtreecommitdiff
path: root/src/nio.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-30 03:25:35 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-30 03:25:35 -0400
commitddfe09f3b8336630dd0f87e446306bc1e012f20b (patch)
treeecffd52c482e987099b7a03383ec62763009e4fb /src/nio.h
parent28c0a056ce806a357371d7102fb25d72e358ff09 (diff)
downloadfujinet-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.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/nio.h b/src/nio.h
index 63b4997..01aa61e 100644
--- a/src/nio.h
+++ b/src/nio.h
@@ -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 */