aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCConnectionLogger.h
blob: d5282db46d5a4432d6582eadf68aba5cb2ac6fde (plain)
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
//
//  MCConnectionLogger.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 6/24/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_CONNECTION_LOGGER_H

#define MAILCORE_CONNECTION_LOGGER_H

#include <stdlib.h>

#include <MailCore/MCUtils.h>

#ifdef __cplusplus

namespace mailcore {
    
    class Data;
    
    enum ConnectionLogType {
        // Received data
        ConnectionLogTypeReceived,
        // Sent data
        ConnectionLogTypeSent,
        // Sent private data
        ConnectionLogTypeSentPrivate,
        // Parse error
        ConnectionLogTypeErrorParse,
        // Error while receiving data - log() is called with a NULL buffer.
        ConnectionLogTypeErrorReceived,
        // Error while sending data - log() is called with a NULL buffer.
        ConnectionLogTypeErrorSent,
    };
    
    class MAILCORE_EXPORT ConnectionLogger {
    public:
        virtual void log(void * sender, ConnectionLogType logType, Data * buffer) {}
    };
    
}

#endif

#endif