quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

clients.c (838B)


      1 /* !checksrc! disable COPYRIGHT all */
      2 
      3 #include "first.h"
      4 
      5 #include "../../lib/curlx/multibyte.c"
      6 #include "../../lib/curlx/timediff.c"
      7 #include "../../lib/curlx/wait.c"
      8 #include "h2_pausing.c"
      9 #include "h2_serverpush.c"
     10 #include "h2_upgrade_extreme.c"
     11 #include "hx_download.c"
     12 #include "hx_upload.c"
     13 #include "tls_session_reuse.c"
     14 #include "upload_pausing.c"
     15 #include "ws_data.c"
     16 #include "ws_pingpong.c"
     17 
     18 const struct entry_s s_entries[] = {
     19   {"h2_pausing", test_h2_pausing},
     20   {"h2_serverpush", test_h2_serverpush},
     21   {"h2_upgrade_extreme", test_h2_upgrade_extreme},
     22   {"hx_download", test_hx_download},
     23   {"hx_upload", test_hx_upload},
     24   {"tls_session_reuse", test_tls_session_reuse},
     25   {"upload_pausing", test_upload_pausing},
     26   {"ws_data", test_ws_data},
     27   {"ws_pingpong", test_ws_pingpong},
     28   {NULL, NULL}
     29 };
     30 
     31 #include "first.c"