X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/94bdf40722a406f66383261d36e500213b0c2c38..25613a61f6f3b9e54d5229af7e2278d0fa54bdd9:/methods/http_main.cc diff --git a/methods/http_main.cc b/methods/http_main.cc index 2c46ab19d..f21a5709c 100644 --- a/methods/http_main.cc +++ b/methods/http_main.cc @@ -1,15 +1,20 @@ +#include #include -#include +#include +#include -#include "connect.h" -#include "rfc2553emu.h" #include "http.h" - int main() { setlocale(LC_ALL, ""); + // ignore SIGPIPE, this can happen on write() if the socket + // closes the connection (this is dealt with via ServerDie()) + signal(SIGPIPE, SIG_IGN); + HttpMethod Mth; + + Mth.DropPrivsOrDie(); return Mth.Loop(); }