#include "captcha.h" #ifdef CONFIG_CAPTCHA //ask question if you are bot or not will protect from simplest bots //or just any other automatic stuff //After captcha used amount of logs reduced, becouse 99% logs before where //generated by auto-bot-travelers int captcha_test1( term_screen *ts) { int ret = 0; const int s_size = 2; char s[s_size]; int column, row; int c; //setup terminal output position term_clr_scr( ts ); column = term_get_maxcol( ts ); row = term_get_maxrow( ts ); term_cur_set_c( ts, column/2 ); term_cur_set_r( ts, row/2 ); //just ask question printf("Are you bot?(y/n):\n"); c = term_getc( ts ); if ( (c == 'n') || ( c == 'N') ) ret = 1; return ret; } #endif