File: HTMulti.html

package info (click to toggle)
cern-httpd 3.0A-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,392 kB
  • ctags: 6,554
  • sloc: ansic: 37,902; makefile: 1,746; perl: 535; csh: 167; sh: 143
file content (31 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<HTML>
<HEAD>
<TITLE>Multiformat handling in libwww</TITLE>
</HEAD>
<BODY>
<H1>Multiformat Handling</H1>

<PRE>
#ifndef HTMULTI_H
#define HTMULTI_H

#include "HTFile.h"

/*
**	Set default file name for welcome page on each directory.
*/
PUBLIC void HTAddWelcome PARAMS((char * welcome_name));

/*
**	Perform multiformat handling
*/
PUBLIC char * HTMulti PARAMS((HTRequest *	req,
			      char *		path,
			      struct stat *	stat_info));

#endif /* HTMULTI_H */

</PRE>
End of HTMulti.
</BODY>
</HTML>