File: vdetelweb.h

package info (click to toggle)
vdetelweb 1.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: ansic: 1,358; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _VDETELWEB_H
#define _VDETELWEB_H
#define BUFSIZE 1024
typedef void (*voidfun)();

extern void *status[];

extern char *banner;
extern char *prompt;

int sha1passwdok(const char *pw);
int addpfd(int fd,voidfun cb);
void delpfd(int fn);
int pfdsearch(int fd);
int openextravdem();
void telnet_init(int vdefd);
void web_init(int vdefd);

void printlog(int priority, const char *format, ...);

#endif