ReactOS 0.4.16-dev-303-g11d5cb8
|
#include "telnetd.h"
Go to the source code of this file.
Macros | |
#define | telnetd_printf printf |
Functions | |
int | kickoff_telnetd (void) |
static BOOL WINAPI | Cleanup (DWORD dwControlType) |
static BOOLEAN | StartSocketInterface (void) |
static void | CreateSocket (void) |
static void | WaitForConnect (void) |
static void | UserLogin (int client_socket) |
static DWORD WINAPI | UserLoginThread (LPVOID data) |
static int | DoTelnetHandshake (int sock) |
static int | ReceiveLine (int sock, char *buffer, int len, EchoMode echo) |
static void | RunShell (client_t *client) |
static DWORD WINAPI | MonitorChildThread (LPVOID data) |
static DWORD WINAPI | WriteToPipeThread (LPVOID data) |
static DWORD WINAPI | ReadFromPipeThread (LPVOID data) |
static void | TerminateShell (client_t *client) |
static VOID | ErrorExit (LPTSTR lpszMessage) |
Variables | |
static BOOLEAN | bShutdown = 0 |
static BOOLEAN | bSocketInterfaceInitialised = 0 |
static int | sock |
Definition at line 102 of file telnetd.c.
Referenced by kickoff_telnetd(), Test_ioctlsocket(), and Test_recv().
Definition at line 229 of file telnetd.c.
Referenced by UserLoginThread().
Definition at line 647 of file telnetd.c.
Referenced by AcpiDsExecBeginOp(), AcpiEvAsynchExecuteGpeMethod(), AcpiEvCreateGpeInfoBlocks(), AcpiEvDetectGpe(), AcpiInstallMethod(), AcpiNsConvertToReference(), AcpiNsInitializeDevices(), AcpiUtCopyEsimpleToIsimple(), AcpiUtCopyIelementToIelement(), AcpiUtUpdateObjectReference(), CreateSocket(), IopValidateID(), kickoff_telnetd(), MENU_TrackMenu(), RunShell(), StartSocketInterface(), URL_ParseUrl(), USBH_CreateDevice(), USBH_PortIdleNotificationCancelRoutine(), USBH_ResetDevice(), USBH_StartHubFdoDevice(), USBH_SyncGetHubDescriptor(), USBPORT_CreateDevice(), UserLogin(), and WaitForConnect().
Definition at line 48 of file telnetd.c.
Referenced by serv_main().
Definition at line 461 of file telnetd.c.
Referenced by RunShell().
Definition at line 545 of file telnetd.c.
Referenced by RunShell().
Definition at line 289 of file telnetd.c.
Referenced by UserLoginThread(), and WriteToPipeThread().
Definition at line 360 of file telnetd.c.
Referenced by UserLoginThread().
Definition at line 79 of file telnetd.c.
Referenced by kickoff_telnetd().
Definition at line 594 of file telnetd.c.
Referenced by ReadFromPipeThread(), and WriteToPipeThread().
Definition at line 138 of file telnetd.c.
Referenced by WaitForConnect().
Definition at line 155 of file telnetd.c.
Referenced by UserLogin().
Definition at line 120 of file telnetd.c.
Referenced by kickoff_telnetd().
Definition at line 503 of file telnetd.c.
Referenced by RunShell().
|
static |
Definition at line 36 of file telnetd.c.
Referenced by kickoff_telnetd().
|
static |
Definition at line 37 of file telnetd.c.
Referenced by Cleanup(), ErrorExit(), and StartSocketInterface().