1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
.TH "Protocol" 3 "15 Aug 2009" "Version 0.8.2" "mailfilter" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Protocol \-
.SH SYNOPSIS
.br
.PP
\fC#include <protocol.hh>\fP
.PP
Inherited by \fBPOP3\fP.
.PP
.SS "Public Member Functions"
.in +1c
.ti -1c
.RI "virtual \fB~Protocol\fP (void)"
.br
.ti -1c
.RI "virtual bool \fBlogin\fP (const char *usr, const char *pass, const unsigned int) const =0"
.br
.ti -1c
.RI "virtual bool \fBlogout\fP (void) const =0"
.br
.ti -1c
.RI "virtual int \fBremove_msg\fP (const unsigned int num) const =0"
.br
.ti -1c
.RI "virtual int \fBstatus\fP (void) const =0"
.br
.ti -1c
.RI "virtual int \fBscan\fP (void) const =0"
.br
.ti -1c
.RI "void \fBset_connection\fP (\fBConnection\fP *)"
.br
.ti -1c
.RI "void \fBset_ident\fP (unsigned int)"
.br
.ti -1c
.RI "unsigned int \fBident\fP (void) const "
.br
.in -1c
.SS "Protected Attributes"
.in +1c
.ti -1c
.RI "\fBConnection\fP * \fBconn\fP"
.br
.ti -1c
.RI "unsigned int \fBprot_ident\fP"
.br
.ti -1c
.RI "unsigned int \fBconnect_type\fP"
.br
.in -1c
.SH "Constructor & Destructor Documentation"
.PP
.SS "virtual Protocol::~Protocol (void)\fC [inline, virtual]\fP"
.PP
.SH "Member Function Documentation"
.PP
.SS "unsigned int Protocol::ident (void) const"
.PP
.SS "virtual bool Protocol::login (const char * usr, const char * pass, const unsigned int) const\fC [pure virtual]\fP"
.PP
Implemented in \fBPOP3\fP, and \fBAPOP\fP.
.SS "virtual bool Protocol::logout (void) const\fC [pure virtual]\fP"
.PP
Implemented in \fBPOP3\fP.
.SS "virtual int Protocol::remove_msg (const unsigned int num) const\fC [pure virtual]\fP"
.PP
Implemented in \fBPOP3\fP.
.SS "virtual int Protocol::scan (void) const\fC [pure virtual]\fP"
.PP
Implemented in \fBPOP3\fP.
.SS "void Protocol::set_connection (\fBConnection\fP * currently_established_connection)"
.PP
.SS "void Protocol::set_ident (unsigned int i)"
.PP
.SS "virtual int Protocol::status (void) const\fC [pure virtual]\fP"
.PP
Implemented in \fBPOP3\fP.
.SH "Member Data Documentation"
.PP
.SS "\fBConnection\fP* \fBProtocol::conn\fP\fC [protected]\fP"
.PP
.SS "unsigned int \fBProtocol::connect_type\fP\fC [protected]\fP"
.PP
.SS "unsigned int \fBProtocol::prot_ident\fP\fC [protected]\fP"
.PP
.SH "Author"
.PP
Generated automatically by Doxygen for mailfilter from the source code.
|