11 lines
209 B
C++
11 lines
209 B
C++
|
#pragma once
|
||
|
#include <r3.h>
|
||
|
|
||
|
#include <base/types.hpp>
|
||
|
|
||
|
namespace base::http {
|
||
|
inline std::string R3IovecString(r3_iovec_t& iovec) {
|
||
|
return std::string(iovec.base, iovec.len);
|
||
|
}
|
||
|
} // namespace base::http
|