open-source-search-engine/keepalive.cpp
2013-08-02 13:12:24 -07:00

18 lines
284 B
C++

#include "gb-include.h"
#include <errno.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
int main ( int argc , char *argv[] ) {
loop:
printf("keepalive\n");
//printf("%c",0x07); // the bell!
sleep(400);
goto loop;
}