HTTP_C.C
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. /*
  2.  * http get client
  3.  * Copyright (c) 1999 Erick Engelke
  4.  */
  5. #include <stdio.h>
  6. #include <string.h>
  7. #include <rtos.h>
  8. #include <net.h>
  9. #include <strlst.h>
  10. #include <http.h>
  11. void display_list( stringlist *sl )
  12. {
  13.     void *x;
  14.     char *p;
  15.     p = strlst_getfirst( sl, &x, NULL );
  16.     while ( p != NULL ) {
  17.         cprintf("%srn", p );
  18.         p = strlst_getnext( sl, &x, NULL );
  19.     }
  20.     cprintf("rn");
  21. }
  22. int main( int argc, char **argv )
  23. {
  24.     stringlist *sl;
  25.     rt_init( 100 );
  26.     kdebug = 1;
  27.     sock_init();
  28.     if ( argc < 2 ) {
  29.         cputs("ERROR: http_c //hostname/urlrn");
  30.         exit( 3 );
  31.     }
  32.     if ( http_get( argv[1], 0, &sl, NULL ))
  33.         if ( sl ) display_list( sl );
  34.     if ( sl ) strlst_freeall( sl );
  35.     return( 0 );
  36. }