]> git.saurik.com Git - apt.git/blame_incremental - methods/http_main.cc
Report non-transient errors as errors, not as warnings
[apt.git] / methods / http_main.cc
... / ...
CommitLineData
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
8int main()
9{
10 setlocale(LC_ALL, "");
11
12 // ignore SIGPIPE, this can happen on write() if the socket
13 // closes the connection (this is dealt with via ServerDie())
14 signal(SIGPIPE, SIG_IGN);
15
16 HttpMethod Mth;
17
18 return Mth.Loop();
19}