1 /* $OpenBSD: conf.h,v 1.5 2003/06/17 00:36:40 pjanzen Exp $ */ 2 /* David Leonard <d@openbsd.org>, 1999. Public domain. */ 3 4 /* Configuration option variables for the server: */ 5 6 extern int conf_random; 7 extern int conf_reflect; 8 extern int conf_monitor; 9 extern int conf_ooze; 10 extern int conf_fly; 11 extern int conf_volcano; 12 extern int conf_drone; 13 extern int conf_boots; 14 extern int conf_scan; 15 extern int conf_cloak; 16 extern int conf_logerr; 17 extern int conf_syslog; 18 19 extern int conf_scoredecay; 20 extern int conf_maxremove; 21 extern int conf_linger; 22 23 extern int conf_flytime; 24 extern int conf_flystep; 25 extern int conf_volcano_max; 26 extern int conf_ptrip_face; 27 extern int conf_ptrip_back; 28 extern int conf_ptrip_side; 29 extern int conf_prandom; 30 extern int conf_preflect; 31 extern int conf_pshot_coll; 32 extern int conf_pgren_coll; 33 extern int conf_pgren_catch; 34 extern int conf_pmiss; 35 extern int conf_pdroneabsorb; 36 extern int conf_fall_frac; 37 38 extern int conf_bulspd; 39 extern int conf_ishots; 40 extern int conf_nshots; 41 extern int conf_maxncshot; 42 extern int conf_maxdam; 43 extern int conf_mindam; 44 extern int conf_stabdam; 45 extern int conf_killgain; 46 extern int conf_slimefactor; 47 extern int conf_slimespeed; 48 extern int conf_lavaspeed; 49 extern int conf_cloaklen; 50 extern int conf_scanlen; 51 extern int conf_mindshot; 52 extern int conf_simstep; 53 54 void config(void); 55 void config_arg(char *); 56