Outgoing connections now work in mingw driver.
This commit is contained in:
@@ -341,6 +341,11 @@ std::string StreamBuffer::read_string_limit(int64_t max_allowed) {
|
||||
return std::string(bytes, len);
|
||||
}
|
||||
|
||||
std::string StreamBuffer::read_entire_contents() {
|
||||
std::string result(read_cursor_, fill());
|
||||
clear();
|
||||
return result;
|
||||
}
|
||||
|
||||
void StreamBuffer::overwrite_int8(int64_t write_count_after, int64_t vv) {
|
||||
assert(safe_to_cast_to_int8(vv));
|
||||
|
||||
Reference in New Issue
Block a user