The InspIRCd Project
Home | Developers | Wiki | Forums | Bug Tracker | SVN | Download | Blog | Stats
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

ZLine Class Reference

ZLine class. More...

#include <xline.h>

Inheritance diagram for ZLine:

Inheritance graph
[legend]
Collaboration diagram for ZLine:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 ZLine (time_t s_time, long d, const char *src, const char *re, const char *ip)
 Create a Z-Line.
 ~ZLine ()
 Destructor.

Public Attributes

char * ipaddr
 IP mask.

Detailed Description

ZLine class.

Definition at line 185 of file xline.h.


Constructor & Destructor Documentation

ZLine::ZLine time_t  s_time,
long  d,
const char *  src,
const char *  re,
const char *  ip
[inline]
 

Create a Z-Line.

Parameters:
s_time The set time
d The duration of the xline
src The sender of the xline
re The reason of the xline
ip IP to match

Definition at line 195 of file xline.h.

00195                                                                                       : XLine(s_time, d, src, re)
00196         {
00197                 ipaddr = strdup(ip);
00198         }

ZLine::~ZLine  )  [inline]
 

Destructor.

Definition at line 202 of file xline.h.

00203         {
00204                 free(ipaddr);
00205         }


Member Data Documentation

char* ZLine::ipaddr
 

IP mask.

Definition at line 209 of file xline.h.


The documentation for this class was generated from the following file: