2023-02-09 09:17:04 +00:00
|
|
|
#include <socks/tty.h>
|
|
|
|
|
#include <socks/locks.h>
|
|
|
|
|
#include <socks/queue.h>
|
|
|
|
|
|
2023-04-12 20:17:11 +01:00
|
|
|
int tty_read(struct tty *tty, char *s, unsigned long len)
|
2023-02-09 09:17:04 +00:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-12 20:17:11 +01:00
|
|
|
int tty_write(struct tty *tty, const char *s, unsigned long len)
|
2023-02-09 09:17:04 +00:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|