diff options
Diffstat (limited to 'docs/man/man3/connection.3')
-rw-r--r-- | docs/man/man3/connection.3 | 117 |
1 files changed, 26 insertions, 91 deletions
diff --git a/docs/man/man3/connection.3 b/docs/man/man3/connection.3 index e21a84b8d..e492e0b8b 100644 --- a/docs/man/man3/connection.3 +++ b/docs/man/man3/connection.3 @@ -1,4 +1,4 @@ -.TH "connection" 3 "15 May 2005" "InspIRCd" \" -*- nroff -*- +.TH "connection" 3 "24 May 2005" "InspIRCd" \" -*- nroff -*- .ad l .nh .SH NAME @@ -21,38 +21,6 @@ Inherited by \fBserverrec\fP, and \fBuserrec\fP. .RI "\fBconnection\fP ()" .br .RI "\fIDefault constructor. \fP" -.ti -1c -.RI "bool \fBCreateListener\fP (char *\fBhost\fP, int p)" -.br -.RI "\fICreate a listening socket on 'host' using port number 'p'. \fP" -.ti -1c -.RI "bool \fBBeginLink\fP (char *targethost, int \fBport\fP, char *password, char *servername, int myport)" -.br -.RI "\fIBegin an outbound link to another ircd at targethost. \fP" -.ti -1c -.RI "bool \fBMeshCookie\fP (char *targethost, int \fBport\fP, unsigned long cookie, char *servername)" -.br -.RI "\fIBegin an outbound mesh link to another ircd on a network you are already an authenticated member of. \fP" -.ti -1c -.RI "void \fBTerminateLink\fP (char *targethost)" -.br -.RI "\fITerminate a link to 'targethost' by calling the \fBircd_connector::CloseConnection\fP method. \fP" -.ti -1c -.RI "bool \fBSendPacket\fP (char *message, const char *\fBhost\fP)" -.br -.RI "\fISend a message to a server by name, if the server is unavailable directly route the packet via another server If the server still cannot be reached after attempting to route the message remotely, returns false. \fP" -.ti -1c -.RI "bool \fBRecvPacket\fP (std::deque< std::string > &messages, char *\fBhost\fP, std::deque< std::string > &sums)" -.br -.RI "\fIReturns the next available packet and returns true if data is available. \fP" -.ti -1c -.RI "\fBircd_connector\fP * \fBFindHost\fP (std::string \fBhost\fP)" -.br -.RI "\fIFind the \fBircd_connector\fP oject related to a certain servername given in 'host'. \fP" -.ti -1c -.RI "bool \fBAddIncoming\fP (int \fBfd\fP, char *targethost, int sourceport)" -.br -.RI "\fIAdd an incoming connection to the connection pool. \fP" .in -1c .SS "Public Attributes" @@ -70,19 +38,19 @@ Inherited by \fBserverrec\fP, and \fBuserrec\fP. .br .RI "\fIIP of connection. \fP" .ti -1c -.RI "long \fBbytes_in\fP" +.RI "int \fBbytes_in\fP" .br .RI "\fIStats counter for bytes inbound. \fP" .ti -1c -.RI "long \fBbytes_out\fP" +.RI "int \fBbytes_out\fP" .br .RI "\fIStats counter for bytes outbound. \fP" .ti -1c -.RI "long \fBcmds_in\fP" +.RI "int \fBcmds_in\fP" .br .RI "\fIStats counter for commands inbound. \fP" .ti -1c -.RI "long \fBcmds_out\fP" +.RI "int \fBcmds_out\fP" .br .RI "\fIStats counter for commands outbound. \fP" .ti -1c @@ -113,118 +81,85 @@ Inherited by \fBserverrec\fP, and \fBuserrec\fP. .RI "time_t \fBnping\fP" .br .RI "\fIUsed by PING checks with clients. \fP" -.ti -1c -.RI "std::vector< \fBircd_connector\fP > \fBconnectors\fP" -.br -.RI "\fIWith a serverrec, this is a list of all established server connections. \fP" .in -1c .SH "Detailed Description" .PP -Please note: classes serverrec and userrec both inherit from class connection. Definition at line 212 of file connection.h. +Please note: classes serverrec and userrec both inherit from class connection. Definition at line 261 of file connection.h. .SH "Constructor & Destructor Documentation" .PP .SS "connection::connection ()" .PP Default constructor. -.SH "Member Function Documentation" -.PP -.SS "bool connection::AddIncoming (int fd, char * targethost, int sourceport)" -.PP -Add an incoming connection to the connection pool. (reserved for core use) -.SS "bool connection::BeginLink (char * targethost, int port, char * password, char * servername, int myport)" -.PP -Begin an outbound link to another ircd at targethost. -.SS "bool connection::CreateListener (char * host, int p)" -.PP -Create a listening socket on 'host' using port number 'p'. -.SS "\fBircd_connector\fP* connection::FindHost (std::string host)" -.PP -Find the \fBircd_connector\fP oject related to a certain servername given in 'host'. -.SS "bool connection::MeshCookie (char * targethost, int port, unsigned long cookie, char * servername)" -.PP -Begin an outbound mesh link to another ircd on a network you are already an authenticated member of. -.SS "bool connection::RecvPacket (std::deque< std::string > & messages, char * host, std::deque< std::string > & sums)" -.PP -Returns the next available packet and returns true if data is available. Writes the servername the data came from to 'host'. If no data is available this function returns false. This function will automatically close broken links and reroute pathways, generating split messages on the network. -.SS "bool connection::SendPacket (char * message, const char * host)" -.PP -Send a message to a server by name, if the server is unavailable directly route the packet via another server If the server still cannot be reached after attempting to route the message remotely, returns false. -.SS "void connection::TerminateLink (char * targethost)" -.PP -Terminate a link to 'targethost' by calling the \fBircd_connector::CloseConnection\fP method. .SH "Member Data Documentation" .PP -.SS "long \fBconnection::bytes_in\fP" +.SS "int \fBconnection::bytes_in\fP" .PP -Stats counter for bytes inbound. Definition at line 229 of file connection.h. +Stats counter for bytes inbound. Definition at line 278 of file connection.h. .PP Referenced by userrec::userrec(). -.SS "long \fBconnection::bytes_out\fP" +.SS "int \fBconnection::bytes_out\fP" .PP -Stats counter for bytes outbound. Definition at line 233 of file connection.h. +Stats counter for bytes outbound. Definition at line 282 of file connection.h. .PP Referenced by userrec::FlushWriteBuf(), and userrec::userrec(). -.SS "long \fBconnection::cmds_in\fP" +.SS "int \fBconnection::cmds_in\fP" .PP -Stats counter for commands inbound. Definition at line 237 of file connection.h. +Stats counter for commands inbound. Definition at line 286 of file connection.h. .PP Referenced by userrec::userrec(). -.SS "long \fBconnection::cmds_out\fP" +.SS "int \fBconnection::cmds_out\fP" .PP -Stats counter for commands outbound. Definition at line 241 of file connection.h. +Stats counter for commands outbound. Definition at line 290 of file connection.h. .PP Referenced by userrec::FlushWriteBuf(), and userrec::userrec(). -.SS "std::vector<\fBircd_connector\fP> \fBconnection::connectors\fP" -.PP -With a serverrec, this is a list of all established server connections. With a userrec this is unused.Definition at line 276 of file connection.h. .SS "int \fBconnection::fd\fP" .PP -File descriptor of the connection. Definition at line 217 of file connection.h. +File descriptor of the connection. Definition at line 266 of file connection.h. .PP -Referenced by ConfigReader::DumpErrors(), Server::PseudoToUser(), Server::SendTo(), serverrec::serverrec(), userrec::userrec(), and Server::UserToPseudo(). +Referenced by serverrec::BeginLink(), serverrec::CreateListener(), ConfigReader::DumpErrors(), serverrec::MeshCookie(), Server::PseudoToUser(), userrec::ReadData(), Server::SendTo(), serverrec::serverrec(), userrec::userrec(), and Server::UserToPseudo(). .SS "bool \fBconnection::haspassed\fP" .PP -True if server/user has authenticated, false if otherwise. Definition at line 245 of file connection.h. +True if server/user has authenticated, false if otherwise. Definition at line 294 of file connection.h. .PP Referenced by userrec::userrec(). .SS "char \fBconnection::host\fP[160]" .PP -Hostname of connection. Not used if this is a serverrecDefinition at line 221 of file connection.h. +Hostname of connection. Not used if this is a serverrecDefinition at line 270 of file connection.h. .PP Referenced by userrec::GetFullRealHost(), Server::PseudoToUser(), userrec::userrec(), and Server::UserToPseudo(). .SS "time_t \fBconnection::idle_lastmsg\fP" .PP -Time that the connection last sent data, used to calculate idle time. Definition at line 267 of file connection.h. +Time that the connection last sent data, used to calculate idle time. Definition at line 316 of file connection.h. .PP Referenced by userrec::userrec(). .SS "char \fBconnection::ip\fP[16]" .PP -IP of connection. Definition at line 225 of file connection.h. +IP of connection. Definition at line 274 of file connection.h. .PP Referenced by userrec::userrec(). .SS "time_t \fBconnection::lastping\fP" .PP -Time the connection was last pinged. Definition at line 259 of file connection.h. +Time the connection was last pinged. Definition at line 308 of file connection.h. .PP Referenced by serverrec::serverrec(), and userrec::userrec(). .SS "time_t \fBconnection::nping\fP" .PP -Used by PING checks with clients. Definition at line 271 of file connection.h. +Used by PING checks with clients. Definition at line 320 of file connection.h. .PP Referenced by userrec::userrec(). .SS "int \fBconnection::port\fP" .PP -Port number For a userrec, this is the port they connected to the network on. For a serverrec this is the current listening port of the serverrec object.Definition at line 251 of file connection.h. +Port number For a userrec, this is the port they connected to the network on. For a serverrec this is the current listening port of the serverrec object.Definition at line 300 of file connection.h. .PP -Referenced by userrec::userrec(). +Referenced by serverrec::CreateListener(), and userrec::userrec(). .SS "char \fBconnection::registered\fP" .PP -Used by userrec to indicate the registration status of the connection. Definition at line 255 of file connection.h. +Used by userrec to indicate the registration status of the connection. Definition at line 304 of file connection.h. .PP Referenced by userrec::userrec(). .SS "time_t \fBconnection::signon\fP" .PP -Time the connection was created, set in the constructor. Definition at line 263 of file connection.h. +Time the connection was created, set in the constructor. Definition at line 312 of file connection.h. .PP Referenced by serverrec::serverrec(), and userrec::userrec(). |