]> git.saurik.com Git - apt.git/blob - methods/http_main.cc
78858263266dc3fd1521d5d347bf645ae5ccb735
[apt.git] / methods / http_main.cc
1 #include <config.h>
2 #include <apt-pkg/fileutl.h>
3 #include <signal.h>
4
5 #include "http.h"
6
7 int main()
8 {
9 setlocale(LC_ALL, "");
10
11 // ignore SIGPIPE, this can happen on write() if the socket
12 // closes the connection (this is dealt with via ServerDie())
13 signal(SIGPIPE, SIG_IGN);
14
15 DropPrivs();
16
17 HttpMethod Mth;
18 return Mth.Loop();
19 }