Home
last modified time | relevance | path

Searched refs:nuh (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/dports/irc/infobot/infobot-0.45.3/src/
H A DUser.pl125 ($nuh, $plaintextpass) = split(/\s+/, $nuh);
128 return '' unless $nuh;
156 $lnuh = $nuh;
183 ($nuh, $level, $plainpass, $rest) = split(/\s+/, $nuh, 4);
196 $userLevel{$nuh} = $i;
244 my $nuh = $_[0];
246 if ($userList{$nuh}) {
247 delete $userList{$nuh};
258 ($nuh, $newlevel) = split(/\s+/, $nuh, 2);
264 if ($userList{$nuh}) {
[all …]
H A DProcess.pl28 my ($n, $uh) = ($nuh =~ /^([^!]+)!(.*)/);
34 $infobots{$nuh} = $who;
58 if ($nuh =~ /^$recast$/) {
66 &status("infobot <$nuh> identified") unless $infobots{$nuh};
67 $infobots{$nuh} = $who;
70 if ($infobots{$nuh}) {
106 $VerifWho = &verifyUser($nuh);
/dports/irc/epic5/epic5-2.1.6/source/
H A Dflood.c56 char *nuh; member
81 } else if (!nuh) { in normalize_nuh()
84 char prefix = *nuh; in normalize_nuh()
90 nuh = nnuh; in normalize_nuh()
94 return nuh; in normalize_nuh()
118 nuh = freeit; in new_check_flooding()
164 if (nuh && *nuh) in new_check_flooding()
165 nuh = normalize_nuh(nuh); in new_check_flooding()
201 if (my_stricmp(nuh, flood[i].nuh)) in new_check_flooding()
238 malloc_strcpy(&tmp->nuh, nuh); in new_check_flooding()
[all …]
/dports/irc/epic4/epic4-2.10.9/source/
H A Dflood.c72 char *nuh; member
97 } else if (!nuh) { in normalize_nuh()
101 nuh = nnuh ? nnuh : nuh; in normalize_nuh()
104 return nuh; in normalize_nuh()
145 flood[i].nuh = NULL; in new_check_flooding()
169 if (nuh && *nuh) in new_check_flooding()
170 nuh = normalize_nuh(nuh); in new_check_flooding()
198 if (!flood[i].nuh) in new_check_flooding()
204 if (my_stricmp(nuh, flood[i].nuh)) in new_check_flooding()
241 malloc_strcpy(&tmp->nuh, nuh); in new_check_flooding()
[all …]
/dports/irc/ircd-hybrid/ircd-hybrid-8.2.39/modules/
H A Dm_accept.c121 struct split_nuh_item nuh; in m_accept() local
139 nuh.nuhmask = mask; in m_accept()
140 nuh.nickptr = nick; in m_accept()
141 nuh.userptr = user; in m_accept()
142 nuh.hostptr = host; in m_accept()
148 split_nuh(&nuh); in m_accept()
168 nuh.nuhmask = mask; in m_accept()
169 nuh.nickptr = nick; in m_accept()
170 nuh.userptr = user; in m_accept()
171 nuh.hostptr = host; in m_accept()
[all …]
/dports/irc/ninja/ninja-1.5.8.1/source/
H A Dbans.c123 u_char nuh[512], tmpbuf[1024]; in remove_matching_bans() local
140 my_strncpy(nuh, nick, sizeof(nuh)-1); in remove_matching_bans()
151 snprintf(nuh, sizeof(nuh)-1, "%s!%s@%s", nick, user, host); in remove_matching_bans()
153 nuh[sizeof(nuh)-1] = '\0'; in remove_matching_bans()
163 mtch = match(btmp->ban, nuh); in remove_matching_bans()
164 rmtch = match(nuh, btmp->ban); in remove_matching_bans()
196 put_info("No bans matching %s were found on %s", nuh, ctmp->channel); in remove_matching_bans()
H A Dninjacmd.c911 u_char nuh[384], *foo; local
919 snprintf(nuh, sizeof(nuh) - 1, "%s!*%s@%s", nickl->nick, foo, nickl->host);
920 nuh[sizeof(nuh)-1] = '\0';
921 if (wild_match(nuhmask, nuh))
939 u_char nuh[384], *foo; local
947 snprintf(nuh, sizeof(nuh) - 1, "%s!*%s@%s", nickl->nick, foo, nickl->host);
948 nuh[sizeof(nuh)-1] = '\0';
949 if (wild_match(nuhmask, nuh))
/dports/irc/ircd-hybrid/ircd-hybrid-8.2.39/src/
H A Dconf_resv.c114 struct split_nuh_item nuh; in resv_make() local
117 nuh.nuhmask = s; in resv_make()
118 nuh.nickptr = nick; in resv_make()
119 nuh.userptr = user; in resv_make()
120 nuh.hostptr = host; in resv_make()
122 nuh.nicksize = sizeof(nick); in resv_make()
123 nuh.usersize = sizeof(user); in resv_make()
124 nuh.hostsize = sizeof(host); in resv_make()
126 split_nuh(&nuh); in resv_make()
H A Dconf_parser.y793 nuh.nicksize = 0;
797 split_nuh(&nuh);
926 nuh.nuhmask = s;
931 nuh.nicksize = 0;
935 split_nuh(&nuh);
1550 nuh.nuhmask = s;
1555 nuh.nicksize = 0;
1559 split_nuh(&nuh);
1803 nuh.nicksize = 0;
1807 split_nuh(&nuh);
[all …]
H A Dconf_parser.c3434 nuh.nicksize = 0; in yyparse()
3438 split_nuh(&nuh); in yyparse()
3617 nuh.nuhmask = s; in yyparse()
3622 nuh.nicksize = 0; in yyparse()
3626 split_nuh(&nuh); in yyparse()
4586 nuh.nuhmask = s; in yyparse()
4591 nuh.nicksize = 0; in yyparse()
4595 split_nuh(&nuh); in yyparse()
4905 nuh.nicksize = 0; in yyparse()
4909 split_nuh(&nuh); in yyparse()
[all …]
H A Dconf.c1218 struct split_nuh_item nuh; in parse_aline() local
1220 nuh.nuhmask = *parv; in parse_aline()
1221 nuh.nickptr = NULL; in parse_aline()
1222 nuh.userptr = user; in parse_aline()
1223 nuh.hostptr = host; in parse_aline()
1225 nuh.nicksize = 0; in parse_aline()
1226 nuh.usersize = sizeof(user); in parse_aline()
1227 nuh.hostsize = sizeof(host); in parse_aline()
1229 split_nuh(&nuh); in parse_aline()
H A Dchannel_mode.c187 struct split_nuh_item nuh; in add_id() local
189 nuh.nuhmask = maskptr; in add_id()
190 nuh.nickptr = ban->name; in add_id()
191 nuh.userptr = ban->user; in add_id()
192 nuh.hostptr = ban->host; in add_id()
194 nuh.nicksize = sizeof(ban->name); in add_id()
195 nuh.usersize = sizeof(ban->user); in add_id()
196 nuh.hostsize = sizeof(ban->host); in add_id()
198 split_nuh(&nuh); in add_id()
/dports/irc/evangeline/evangeline/modules/irc.mod/
H A Dtclirc.c10 char nuh[1024]; variable
40 EvangelineSnprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
41 m->user = get_user_by_host(nuh);
257 char nuh[1024]; variable
276 EvangelineSnprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
277 m->user = get_user_by_host(nuh);
685 char nuh[1024]; variable
704 EvangelineSnprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
706 m->user = get_user_by_host(nuh);
720 char nuh[1024]; variable
[all …]
/dports/irc/irc/irc2.11.2p3/contrib/tkserv/
H A Dtkserv.c53 static char *nuh; variable
142 nick = (char *) strdup(nuh); in sendto_user()
274 nick = (char *) strdup(nuh); in is_opered()
305 old_uh = (char *) (strchr(nuh, '!') + 1); in is_opered()
360 uh = (char *) (strchr(nuh, '!') + 1); in must_be_opered()
413 uh = (char *) (strchr(nuh, '!') + 1); in is_authorized()
585 lifetime, nuh); in add_tkline()
747 nuh = (char *) strdup(args[0] + 1); in service_squery()
1032 tks_log("Got QUIT from %s. Terminating.", nuh); in squery_quit()
1199 if (nuh) in main()
[all …]
/dports/irc/eggdrop/eggdrop-1.9.1/src/mod/irc.mod/
H A Dtclirc.c27 char nuh[1024]; variable
59 egg_snprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
60 m->user = get_user_by_host(nuh);
350 char nuh[1024]; variable
369 egg_snprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
981 char nuh[1024]; variable
1006 egg_snprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
1032 char nuh[1024]; variable
1051 egg_snprintf(nuh, sizeof nuh, "%s!%s", m->nick, m->userhost);
1067 char nuh[1024]; variable
[all …]
/dports/multimedia/l-smash/l-smash-2.14.5/codecs/
H A Dh264.c146 h264_nalu_header_t *nuh, in h264_check_nalu_header() argument
154 nuh->length = 1; in h264_check_nalu_header()
163 if( nuh->forbidden_zero_bit ) in h264_check_nalu_header()
172 if( nuh->nal_ref_idc ) in h264_check_nalu_header()
192 h264_nalu_header_t *nuh, in h264_find_next_start_code() argument
1025 h264_nalu_header_t *nuh in h264_parse_slice_header() argument
1215 if( nuh->nal_ref_idc ) in h264_parse_slice_header()
1292 h264_nalu_header_t *nuh, in h264_parse_slice() argument
1299 uint64_t size = nuh->nal_unit_type == H264_NALU_TYPE_SLICE_IDR || nuh->nal_ref_idc == 0 in h264_parse_slice()
2288 h264_nalu_header_t nuh; in lsmash_setup_h264_specific_parameters_from_access_unit() local
[all …]
H A Dhevc.c186 hevc_nalu_header_t *nuh, in hevc_check_nalu_header() argument
205 if( nuh->nuh_layer_id ) in hevc_check_nalu_header()
207 if( nuh->TemporalId == 0 ) in hevc_check_nalu_header()
239 hevc_nalu_header_t *nuh, in hevc_find_next_start_code() argument
293 nuh->length = 0; in hevc_find_next_start_code()
1261 hevc_nalu_header_t *nuh, in hevc_parse_sei() argument
1378 hevc_nalu_header_t *nuh, in hevc_parse_slice_segment_header() argument
1390 slice->nalu_type = nuh->nal_unit_type; in hevc_parse_slice_segment_header()
1391 slice->TemporalId = nuh->TemporalId; in hevc_parse_slice_segment_header()
2787 hevc_nalu_header_t nuh; in lsmash_setup_hevc_specific_parameters_from_access_unit() local
[all …]
H A Dhevc.h312 hevc_nalu_header_t nuh; member
344 hevc_nalu_header_t *nuh,
422 hevc_nalu_header_t *nuh,
430 hevc_nalu_header_t *nuh,
/dports/biology/py-scikit-bio/scikit-bio-0.5.6/skbio/io/format/tests/data/
H A Dtsv_10_fields1 buh na de nuh buh KRRGRHRGRBAWAOMPWAMPOWAMP na de nuh de
H A Dtsv_8_fields1 buh na de nuh buh KRRGRHRGRBAWAOMPWAMPOWAMP na de
/dports/irc/sirc/sirc-2.211/
H A Dn0thing.pl727 local($nuh, $chan, $asked)=@_;
731 return 1 if ($asked.":".$chan.":".$nuh) =~ /^${p}$/i;
821 local($nuh, $ent)=@_;
823 return 1 if $nuh =~ /${ent}$/i;
825 $nuh =~ s/\*/\.\*/g;
826 $nuh =~ s/([^\\])\.([^\*])/$1\\\\*\\.$2/g;
827 $nuh =~ s/([^\.\*\?\\\w])/\\\\*\\$1/g;
828 $nuh =~ tr/?/./;
829 return ($ent =~ /${nuh}$/i);
833 local($nuh)=($who."!".$user."\@".$host);
[all …]
/dports/irc/ergo/ergo-2.8.0/irc/
H A Dstrings.go318 func NUHToNick(nuh string) (nick string) {
319 if idx := strings.IndexByte(nuh, '!'); idx != -1 {
320 return nuh[0:idx]
322 return nuh
/dports/multimedia/l-smash/l-smash-2.14.5/importer/
H A Dnalu_imp.c238 h264_nalu_header_t nuh; in h264_get_access_unit_internal() local
253 uint8_t nalu_type = nuh.nal_unit_type; in h264_get_access_unit_internal()
264 …r, " EBSP length: %"PRIx64" (%"PRIu64") \n", nalu_length - nuh.length, nalu_length - nuh.length… in h264_get_access_unit_internal()
296 …if( (err = h264_parse_slice( info, &nuh, sb->rbsp, nalu + nuh.length, nalu_length - nuh.length )) … in h264_get_access_unit_internal()
335 nalu + nuh.length, in h264_get_access_unit_internal()
336 nalu_length - nuh.length )) < 0 ) in h264_get_access_unit_internal()
1098 hevc_nalu_header_t nuh; in hevc_get_access_unit_internal() local
1113 uint8_t nalu_type = nuh.nal_unit_type; in hevc_get_access_unit_internal()
1124 …r, " EBSP length: %"PRIx64" (%"PRIu64") \n", nalu_length - nuh.length, nalu_length - nuh.length… in hevc_get_access_unit_internal()
1158 if( (err = hevc_parse_slice_segment_header( info, &nuh, sb->rbsp, in hevc_get_access_unit_internal()
[all …]
/dports/irc/epic4/epic4-2.10.9/script/
H A Dstarutils62 @ star.nuh = sar(r/ /!/star.hrm)
63 if (rpattern($star.nuh $star.pat))
75 @ star.pat = star.hrm = star.nuh = []
/dports/x11-themes/clearlooks-themes-extras/clearlooks-themes-extras-0.6_8/Clearlooks-DarkCoffee2/gtk-2.0/
H A Dgtkrc37 bg[INSENSITIVE] = "#181818" #Can't touch this! Nuh nuh nuh nuh

12345678910>>...13