ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/user.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/user.c (file contents):
Revision 4967 by michael, Mon Dec 1 13:59:33 2014 UTC vs.
Revision 4968 by michael, Mon Dec 1 14:36:42 2014 UTC

# Line 538 | Line 538 | register_local_user(struct Client *sourc
538    sendto_realops_flags(UMODE_CCONN, L_ALL, SEND_NOTICE,
539                         "Client connecting: %s (%s@%s) [%s] {%s} [%s] <%s>",
540                         source_p->name, source_p->username, source_p->host,
541 <                       ConfigGeneral.hide_spoof_ips && IsIPSpoof(source_p) ?
542 <                       "255.255.255.255" : source_p->sockhost,
541 >                       source_p->sockhost,
542                         get_client_class(&source_p->connection->confs),
543                         source_p->info, source_p->id);
544  
# Line 837 | Line 836 | user_set_hostmask(struct Client *target_
836    {
837      case MODE_ADD:
838        AddUMode(target_p, UMODE_HIDDENHOST);
840      AddFlag(target_p, FLAGS_IP_SPOOFING);
839        break;
840      case MODE_DEL:
841        DelUMode(target_p, UMODE_HIDDENHOST);
844
845      if (!HasFlag(target_p, FLAGS_AUTH_SPOOF))
846        DelFlag(target_p, FLAGS_IP_SPOOFING);
842        break;
843      default: return;
844    }

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)