Skip to content

Commit 125eebb

Browse files
committed
fixup! src: implement native quic layer
1 parent 3a50bd4 commit 125eebb

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/quic/quic.cc

+16-16
Original file line numberDiff line numberDiff line change
@@ -282,18 +282,18 @@ void Packet::Done(int status) {
282282

283283
Packet::operator uv_buf_t() const {
284284
CHECK(data_);
285-
return uv_buf_t {
286-
reinterpret_cast<char*>(data_->ptr_),
287-
data_->len_
288-
};
285+
uv_buf_t buf;;
286+
buf.base = reinterpret_cast<char*>(data_->ptr_);
287+
buf.len = data_->len_;
288+
return buf;
289289
}
290290

291291
Packet::operator ngtcp2_vec() const {
292292
CHECK(data_);
293-
return ngtcp2_vec {
294-
data_->ptr_,
295-
data_->len_
296-
};
293+
ngtcp2_vec vec;
294+
vec.base = data_->ptr_;
295+
vec.len = data_->len_;
296+
return vec;
297297
}
298298

299299
void Packet::Truncate(size_t len) {
@@ -429,17 +429,17 @@ Store::Store(v8::Local<v8::ArrayBufferView> view)
429429
: Store(view->Buffer()->GetBackingStore(), view->ByteLength(), view->ByteOffset()) {}
430430

431431
Store::operator uv_buf_t() const {
432-
return uv_buf_t {
433-
store_ != nullptr ? static_cast<char*>(store_->Data()) + offset_ : nullptr,
434-
length_
435-
};
432+
uv_buf_t buf;
433+
buf.base = store_ != nullptr ? static_cast<char*>(store_->Data()) + offset_ : nullptr,
434+
buf.len = length_;
435+
return buf;
436436
}
437437

438438
Store::operator ngtcp2_vec() const {
439-
return ngtcp2_vec {
440-
store_ != nullptr ? static_cast<uint8_t*>(store_->Data()) + offset_ : nullptr,
441-
length_
442-
};
439+
ngtcp2_vec vec;
440+
vec.base = store_ != nullptr ? static_cast<uint8_t*>(store_->Data()) + offset_ : nullptr;
441+
vec.len = length_;
442+
return vec;
443443
}
444444

445445
// ======================================================================================

0 commit comments

Comments
 (0)