X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/fed278890872e10c8cdab44d9cdbeefc5ee37d59..7e4dfb4349e909c15b1c777679fdae81d76eeb62:/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(); }