MCPcopy Create free account
hub / github.com/MailCore/mailcore2 / POPConnectionLogger

Class POPConnectionLogger

src/async/pop/MCPOPAsyncSession.cpp:51–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49 };
50
51 class POPConnectionLogger : public Object, public ConnectionLogger {
52 public:
53 POPConnectionLogger(POPAsyncSession * session) {
54 mSession = session;
55 }
56
57 virtual ~POPConnectionLogger() {
58 }
59
60 virtual void log(void * sender, ConnectionLogType logType, Data * buffer)
61 {
62 mSession->logConnection(logType, buffer);
63 }
64
65 private:
66 POPAsyncSession * mSession;
67 };
68
69}
70

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected