mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Lay out initial parts for the Storage framework
This includes a manager, component manager, BIF and script code, and parts to support new storage backend plugins.
This commit is contained in:
parent
3d6e7c85b0
commit
2ea0f3e70a
32 changed files with 874 additions and 1 deletions
|
@ -97,6 +97,15 @@ namespace filesystem = ghc::filesystem;
|
|||
inline constexpr std::string_view path_list_separator = ":";
|
||||
#endif
|
||||
|
||||
#include "zeek/3rdparty/nonstd/expected.hpp"
|
||||
namespace zeek {
|
||||
template<typename T, typename E>
|
||||
using expected = nonstd::expected<T, E>;
|
||||
|
||||
template<typename E>
|
||||
using unexpected = nonstd::unexpected<E>;
|
||||
} // namespace zeek
|
||||
|
||||
using zeek_int_t = int64_t;
|
||||
using zeek_uint_t = uint64_t;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue