/src/games/hunt/huntd/ |
answer.c | 64 static char team; local in function:answer 116 (void) read(newsock, &team, 1); 151 if (team == ' ') 155 team); 200 if (mode == C_MONITOR && team == ' ') 201 team = '*'; 203 pp->p_ident = get_ident(machine, uid, name, team); 401 get_ident(uint32_t machine, uint32_t uid, const char *name, char team) 409 && ip->i_team == team 428 ip->i_team = team; [all...] |
answer.c | 64 static char team; local in function:answer 116 (void) read(newsock, &team, 1); 151 if (team == ' ') 155 team); 200 if (mode == C_MONITOR && team == ' ') 201 team = '*'; 203 pp->p_ident = get_ident(machine, uid, name, team); 401 get_ident(uint32_t machine, uint32_t uid, const char *name, char team) 409 && ip->i_team == team 428 ip->i_team = team; [all...] |
/src/games/hunt/hunt/ |
hunt.c | 95 static char team = ' '; variable in typeref:typename:char 148 team = *optarg; 149 if (!isdigit((unsigned char)team)) { 150 warnx("Team names must be numeric"); 151 team = ' '; 214 "usage:\thunt [-qmcsfS] [-n name] [-t team] [-p port] [-w message] [host]\n", 348 do_connect(name, sizeof(name), team, enter_status); 722 else if (strncmp(envp, "team=", s - envp + 1) == 0) { 723 team = *(s + 1); 724 if (!isdigit((unsigned char)team)) [all...] |
hunt.c | 95 static char team = ' '; variable in typeref:typename:char 148 team = *optarg; 149 if (!isdigit((unsigned char)team)) { 150 warnx("Team names must be numeric"); 151 team = ' '; 214 "usage:\thunt [-qmcsfS] [-n name] [-t team] [-p port] [-w message] [host]\n", 348 do_connect(name, sizeof(name), team, enter_status); 722 else if (strncmp(envp, "team=", s - envp + 1) == 0) { 723 team = *(s + 1); 724 if (!isdigit((unsigned char)team)) [all...] |