summaryrefslogtreecommitdiff
path: root/analyzers/src/watch/protocols/nfsv41_protocol.h
blob: 8b74ab4d87e623eab0bb0247605df41069a64fbd (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
//------------------------------------------------------------------------------
// Author: Vitali Adamenka
// Description: Header for NFSv41 protocol.
// Copyright (c) 2015 EPAM Systems. All Rights Reserved.
//------------------------------------------------------------------------------
/*
    This file is part of Nfstrace.

    Nfstrace is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, version 2 of the License.

    Nfstrace is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Nfstrace.  If not, see <http://www.gnu.org/licenses/>.
*/
//------------------------------------------------------------------------------
#ifndef NFSV41_PROTOCOL_H
#define NFSV41_PROTOCOL_H
//------------------------------------------------------------------------------
#include "abstract_protocol.h"
//------------------------------------------------------------------------------
class NFSv41Protocol : public AbstractProtocol
{
public:
    NFSv41Protocol();
    ~NFSv41Protocol();
    virtual const char* printProcedure(std::size_t);
    virtual std::size_t getGroups();
    virtual std::size_t getGroupBegin(std::size_t);
};
//------------------------------------------------------------------------------
#endif//NFSV41_PROTOCOL_H
//------------------------------------------------------------------------------