/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include "Command.h" #define IAC 0xff class Parser { public: Function on_command; Function on_data; Function on_error; void write(const StringView&); protected: enum State { Free, ReadCommand, ReadSubcommand, Error, }; void write(const String& str); private: State m_state { State::Free }; u8 m_command { 0 }; };