]>
Commit | Line | Data |
---|---|---|
1 | #include <config.h> | |
2 | #include <apt-pkg/fileutl.h> | |
3 | #include <apt-pkg/error.h> | |
4 | #include <signal.h> | |
5 | ||
6 | #include "http.h" | |
7 | ||
8 | int main() | |
9 | { | |
10 | // ignore SIGPIPE, this can happen on write() if the socket | |
11 | // closes the connection (this is dealt with via ServerDie()) | |
12 | signal(SIGPIPE, SIG_IGN); | |
13 | ||
14 | return HttpMethod().Loop(); | |
15 | } |