aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/metrics/TCPConnection.h
blob: d4618d7fa7e43afc10b00abd4d26a1f0be9d8db0 (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
48
49
/*
 * TCPConnection.h
 *****************************************************************************
 * Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
 *
 * Email: libdash-dev@vicky.bitmovin.net
 *
 * This source code and its use and distribution, is subject to the terms
 * and conditions of the applicable license agreement.
 *****************************************************************************/

#ifndef TCPCONNECTION_H_
#define TCPCONNECTION_H_

#include "ITCPConnection.h"

namespace dash
{
    namespace metrics
    {
        class TCPConnection : public ITCPConnection
        {
            public:
                TCPConnection          ();
                virtual ~TCPConnection ();

                uint32_t                TCPId                   () const;
                const std::string&      DestinationAddress      () const;
                const std::string&      ConnectionOpenedTime    () const;
                const std::string&      ConnectionClosedTime    () const;
                uint64_t                ConnectionTime          () const;

                void    SetTCPId                (uint32_t tcpId);
                void    SetDestinationAddress   (const std::string& destAddress);
                void    SetConnectionOpenedTime (std::string tOpen);
                void    SetConnectionClosedTime (std::string tClose);
                void    SetConnectionTime       (uint64_t tConnect);

            private:
                uint32_t        tcpId;
                std::string     dest;
                std::string     tOpen;
                std::string     tClose;
                uint64_t        tConnect;
        };
    }
}

#endif /* TCPCONNECTION_H_ */