Dolda2000 GitWeb
/
ashd.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Slightly more sensible argument parsing for htparser.
[ashd.git]
/
src
/
htparser.h
1
#ifndef _ASH_HTPARSER_H
2
#define _ASH_HTPARSER_H
3
4
struct conn {
5
int (*initreq)(struct conn *, struct hthead *);
6
void *pdata;
7
};
8
9
void serve(FILE *in, struct conn *conn);
10
11
void handleplain(int argc, char **argp, char **argv);
12
13
#endif