open-source-search-engine/keepalive.cpp

18 lines
284 B
C++
Raw Normal View History

2013-08-03 00:12:24 +04:00
#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;
}