35f882644e
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
16 lines
190 B
C++
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;
|
|
};
|
|
|
|
}
|