summaryrefslogtreecommitdiff
path: root/protocols/YAMN/src/proto/pop3
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-10-11 11:58:33 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-10-11 11:58:33 +0300
commit92d9501792831f79263ba5b01b372d52ca48c2f2 (patch)
treebe4bc015de07f5b9dcb2e0e406eb1d4c02b079c9 /protocols/YAMN/src/proto/pop3
parent71dcdadb1231ee3cd79cc880ae4cfb5e2c3ea641 (diff)
YAMN: useless class deleted
Diffstat (limited to 'protocols/YAMN/src/proto/pop3')
-rw-r--r--protocols/YAMN/src/proto/pop3/pop3.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/YAMN/src/proto/pop3/pop3.h b/protocols/YAMN/src/proto/pop3/pop3.h
index 963a584d30..ae7ca29b8c 100644
--- a/protocols/YAMN/src/proto/pop3/pop3.h
+++ b/protocols/YAMN/src/proto/pop3/pop3.h
@@ -18,6 +18,9 @@
class CPop3Client
{
+ BOOL SearchFromEnd(char *end, int bs, int mode);
+ BOOL SearchFromStart(char *end, int bs, int mode);
+
public:
CPop3Client(): NetClient(nullptr), Stopped(FALSE) {}
~CPop3Client() { delete NetClient; }
@@ -40,10 +43,7 @@ public:
BOOL Stopped;
uint32_t POP3Error;
- class CNetClient *NetClient; //here the network layout is defined (TCP or SSL+TCP etc.)
-private:
- BOOL SearchFromEnd(char *end,int bs,int mode);
- BOOL SearchFromStart(char *end,int bs,int mode);
+ CNLClient *NetClient; //here the network layout is defined (TCP or SSL+TCP etc.)
};
enum