Class: Protocol::QUIC::TLS::ClientContext

Inherits:
Context
  • Object
show all
Defined in:
ext/source/Ruby/Protocol/QUIC/TLS/ClientContext.cpp

Instance Method Summary collapse

Methods inherited from Context

#add_protocol, #load_certificate_file, #load_private_key_file, #protocols

Constructor Details

#initializeObject



49
50
51
52
53
# File 'ext/source/Ruby/Protocol/QUIC/TLS/ClientContext.cpp', line 49

static VALUE Ruby_Protocol_QUIC_TLS_ClientContext_initialize(VALUE self) {
	DATA_PTR(self) = new ::Protocol::QUIC::TLS::ClientContext();

	return self;
}