File: httpd.c

package info (click to toggle)
et 80b2-6
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,052 kB
  • ctags: 1,076
  • sloc: ansic: 10,311; tcl: 2,633; makefile: 180
file content (16 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
** This file implements a simple web server
*/
void Et_Main(int argc, char **argv){
  ET_INSTALL_COMMANDS;
  ET_INCLUDE( httpd.tcl );
}

#if UNIX
int main(int argc, char **argv){
  Et_Init(&argc,argv);
  Et_Main(argc,argv);
  Et_MainLoop();
  return 0;
}
#endif