X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/aa16679ccb39598b9b4546c912af1cf8c70e529b..17631ae79faf0f625dbf4fe0a393caca79429923:/methods/http_main.cc diff --git a/methods/http_main.cc b/methods/http_main.cc index 2c46ab19d..fa183ddb3 100644 --- a/methods/http_main.cc +++ b/methods/http_main.cc @@ -1,15 +1,15 @@ +#include <config.h> #include <apt-pkg/fileutl.h> -#include <apt-pkg/acquire-method.h> +#include <apt-pkg/error.h> +#include <signal.h> -#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; - return Mth.Loop(); + return HttpMethod().Loop(); }