HttpReader.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. #########################################################################
  2. #  OpenKore - Asynchronous HTTP client
  3. #
  4. #  This software is open source, licensed under the GNU General Public
  5. #  License, version 2.
  6. #  Basically, this means that you're allowed to modify and distribute
  7. #  this software. However, if you distribute modified versions, you MUST
  8. #  also distribute the source code.
  9. #  See http://www.gnu.org/licenses/gpl.html for the full license.
  10. #########################################################################
  11. package HttpReader;
  12. use strict;
  13. use XSTools;
  14. use constant CONNECTING => 0;
  15. use constant DOWNLOADING => 1;
  16. use constant DONE => 2;
  17. use constant ERROR => 3;
  18. XSTools::bootModule('Utils::HttpReader');
  19. package StdHttpReader;
  20. use base qw(HttpReader);
  21. package MirrorHttpReader;
  22. use base qw(HttpReader);
  23. 1;