http_main.cc 214 B

12345678910111213141516
  1. #include <apt-pkg/fileutl.h>
  2. #include <apt-pkg/acquire-method.h>
  3. #include "connect.h"
  4. #include "rfc2553emu.h"
  5. #include "http.h"
  6. int main()
  7. {
  8. setlocale(LC_ALL, "");
  9. HttpMethod Mth;
  10. return Mth.Loop();
  11. }