merge with the debian tree
[ntk/apt.git] / methods / http_main.cc
1 #include <apt-pkg/fileutl.h>
2 #include <apt-pkg/acquire-method.h>
3
4 #include "connect.h"
5 #include "rfc2553emu.h"
6 #include "http.h"
7
8
9 int main()
10 {
11 setlocale(LC_ALL, "");
12
13 HttpMethod Mth;
14 return Mth.Loop();
15 }