aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCConnectionLogger.h
blob: bdb588bc73c91113762c0f4e368b9555f30a47b4 (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
//
//  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>

#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 ConnectionLogger {
    public:
        virtual void log(void * sender, ConnectionLogType logType, Data * buffer) {}
    };
    
}

#endif

#endif