memgraph/include/communication/bolt/v1/states/handshake.hpp
Marko Budiselic 35f882644e config is better now (yaml-cpp) + web::Client + web::Logger
Summary:
init struct size problem fix

cast issue bolt::State::init

TCP server bugfix EPOLLET + bolt bug fix

Test Plan: normal

Reviewers: ktf

Subscribers: ktf

Maniphest Tasks: T87

Differential Revision: https://phabricator.tomicevic.com/D2
2016-09-08 12:13:30 +01:00

16 lines
190 B
C++

#pragma once
#include "communication/bolt/v1/states/state.hpp"
namespace bolt
{
class Handshake : public State
{
public:
Handshake();
State* run(Session& session) override;
};
}