cnping

Minimal Graphical Ping Tool
git clone https://git.sinitax.com/cnlohr/cnping
Log | Files | Refs | Submodules | README | LICENSE | sfeed.txt

httping.h (350B)


      1#ifndef _HTTPING_H
      2#define _HTTPING_H
      3
      4//Callbacks (when started/received)
      5void HTTPingCallbackStart( int seqno );
      6void HTTPingCallbackGot( int seqno );
      7
      8//addy should be google.com/blah or something like that.  Do not include prefixing http://.  Port numbers OK.
      9int StartHTTPing( const char * addy, double minperiod, const char * device);
     10
     11#endif
     12