spicetools/util/netutils.h

10 lines
179 B
C
Raw Normal View History

2024-08-28 15:10:34 +00:00
#pragma once
#include <vector>
#include <string>
namespace netutils {
std::vector<std::string> get_local_addresses();
std::string http_status_reason_phrase(int code);
}