Changeset 732 for branches/ithildin-1.1
- Timestamp:
- 05/12/06 03:38:09 (6 years ago)
- Location:
- branches/ithildin-1.1/modules/ircd/addons
- Files:
-
- 2 edited
-
acl.c (modified) (2 diffs)
-
throttle.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/ithildin-1.1/modules/ircd/addons/acl.c
r731 r732 160 160 acl_t *ap; 161 161 162 162 163 /* extract user@host data */ 163 164 strlcpy(hostcopy, hostmask, USERLEN + HOSTLEN + 2); … … 171 172 strlcpy(host, at + 1, HOSTLEN + 1); 172 173 } 174 175 if (rule == ACL_DEFAULT_RULE) 176 rule = acl.default_rule; 173 177 174 178 if (stage == ACL_STAGE_CONNECT) -
branches/ithildin-1.1/modules/ircd/addons/throttle.c
r731 r732 165 165 if (tp->banned + len >= me.now) { 166 166 if ((ap = find_acl(ACL_STAGE_CONNECT, ACL_DENY, cp->host, 167 throttle_acl_type, NULL, NULL)) == NULL) {167 throttle_acl_type, ACL_DEFAULT_RULE, NULL, NULL)) == NULL) { 168 168 ap = create_acl(ACL_STAGE_CONNECT, ACL_DENY, cp->host, 169 169 throttle_acl_type, ACL_DEFAULT_RULE);
Note: See TracChangeset
for help on using the changeset viewer.
