public
Description: A simple program to help you react more quickly to servers and services coming back online.
Homepage:
Clone URL: git://github.com/dustin/waitforsocket.git
waitforsocket / waitforsocket.h
100644 8 lines (5 sloc) 0.196 kb
1
2
3
4
5
6
7
8
/*
* Copyright (c) 2005 Dustin Sallings <dustin@spy.net>
*/
 
enum returnvalues { ERR_DNS=-3, ERR_TIMEOUT=-2, ERR_ERRNO=-1, RV_SUCCESS=0 };
 
enum returnvalues attemptConnection(char *, char *);