Git Product home page Git Product logo

snowhttp's Introduction

snowHTTP

Features

  • highly configurable, check out lib/snowhttp.h
  • no mid-run memory allocations outside of wolfssl and potential cache refreshes
  • multithreading
  • tls session resumption (+ tickets) - sessions are cached at startup and refreshed on a timer
  • dns caching

Building

To build library as static:

$ make

To build example executable:

$ make
$ make example

All built files are created by default in bin/

Usage

Single loop (no multithreading) setup

    snow_global_t global = {}; // contains all data
    
    // optional, if TLS session reuse is wanted
    snow_addWantedSession(&global, "https://hostname.com"); 
    snow_addWantedSession(&global, "https://hostname1.com");
    
    snow_init(&global);
    ...
    ev_run(EV_DEFAULT, loop_cb);
    ...
    snow_destroy(&global);

Requests can be made from loop_cb:

snow_do(&global, GET, "https://google.com/", http_cb, err_cb);

Multi loop setup

See example.cpp.

    snow_global_t global = {}; // contains all data
    ev_loop loops[multi_loop_max]; // multi loop data
    
    assignLoops(&global);

    // optional, if TLS session reuse is wanted
    snow_addWantedSession(&global, "https://hostname.com"); 
    snow_addWantedSession(&global, "https://hostname1.com");
    
    snow_init(&global);
    snow_spawnLoops(&global); // creates threads
    ...
    snow_joinLoops(&global); // joins threads
    ...
    snow_destroy(&global);

Requests can be made from the main thread, before snow_joinLoops:

snow_do(&global, GET, "https://google.com/", http_cb, err_cb);

License

This software is distributed under a MIT license, see LICENSE.
No warranty is provided, use at own risk.

snowhttp's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.