Split net stack into eth/arp/ipv4/icmp, deferred handler responses, ping tests
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
#pragma once
|
||||
#include <optional>
|
||||
#include <string_view>
|
||||
#include "dispatch.h"
|
||||
#include "wire.h"
|
||||
|
||||
extern std::string_view firmware_name;
|
||||
|
||||
ResponsePICOBOOT handle_picoboot(const RequestPICOBOOT&);
|
||||
ResponseInfo handle_info(const RequestInfo&);
|
||||
ResponseLog handle_log(const RequestLog&);
|
||||
std::optional<ResponsePICOBOOT> handle_picoboot(const responder& resp, const RequestPICOBOOT&);
|
||||
std::optional<ResponseInfo> handle_info(const responder& resp, const RequestInfo&);
|
||||
std::optional<ResponseLog> handle_log(const responder& resp, const RequestLog&);
|
||||
|
||||
Reference in New Issue
Block a user