CernVM-FS  2.12.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
helper_util.h
Go to the documentation of this file.
1 
5 #ifndef CVMFS_AUTHZ_HELPER_UTIL_H_
6 #define CVMFS_AUTHZ_HELPER_UTIL_H_
7 
8 #include <string>
9 
10 const unsigned kProtocolVersion = 1;
11 
12 void CheckCallContext();
13 void ParseHandshakeInit(const std::string &msg);
14 void ParseRequest(const std::string &msg);
15 std::string ReadMsg();
16 void WriteMsg(const std::string &msg);
17 
18 #endif // CVMFS_AUTHZ_HELPER_UTIL_H_
void ParseHandshakeInit(const string &msg)
Definition: helper_util.cc:41
string ReadMsg()
Definition: helper_util.cc:106
void WriteMsg(const string &msg)
Definition: helper_util.cc:135
void CheckCallContext()
Definition: helper_util.cc:32
void ParseRequest(const string &msg)
Definition: helper_util.cc:68
const unsigned kProtocolVersion
Definition: helper_util.h:10