apt-key del: Ignore case when checking if a keyid exists in a keyring.
[ntk/apt.git] / methods / http_main.cc
... / ...
CommitLineData
1#include <config.h>
2
3#include <signal.h>
4
5#include "http.h"
6
7int 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 HttpMethod Mth;
16 return Mth.Loop();
17}