Module: Protocol::HTTP3
- Defined in:
- lib/protocol/http3/version.rb,
ext/source/Ruby/Protocol/HTTP3.cpp
Constant Summary collapse
- VERSION =
"0.0.1"
Class Method Summary collapse
Class Method Details
.file_descriptor(socket) ⇒ Object
11 12 13 14 15 16 |
# File 'ext/source/Ruby/Protocol/HTTP3.cpp', line 11
static VALUE Ruby_Protocol_HTTP3_file_descriptor(VALUE self, VALUE socket)
{
(void)self;
return INT2NUM(Ruby_Protocol_QUIC_Socket_get(socket)->descriptor());
}
|