mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(ext/net): expose all tls ops (#12699)
This makes it possible for implementers to cherry-pick which ops they want to use.
This commit is contained in:
parent
ccd730a8b7
commit
66974a8794
1 changed files with 5 additions and 5 deletions
|
@ -774,13 +774,13 @@ pub struct ConnectTlsArgs {
|
|||
|
||||
#[derive(Deserialize)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
struct StartTlsArgs {
|
||||
pub struct StartTlsArgs {
|
||||
rid: ResourceId,
|
||||
ca_certs: Vec<String>,
|
||||
hostname: String,
|
||||
}
|
||||
|
||||
async fn op_tls_start<NP>(
|
||||
pub async fn op_tls_start<NP>(
|
||||
state: Rc<RefCell<OpState>>,
|
||||
args: StartTlsArgs,
|
||||
_: (),
|
||||
|
@ -1013,7 +1013,7 @@ pub struct ListenTlsArgs {
|
|||
alpn_protocols: Option<Vec<String>>,
|
||||
}
|
||||
|
||||
fn op_tls_listen<NP>(
|
||||
pub fn op_tls_listen<NP>(
|
||||
state: &mut OpState,
|
||||
args: ListenTlsArgs,
|
||||
_: (),
|
||||
|
@ -1073,7 +1073,7 @@ where
|
|||
})
|
||||
}
|
||||
|
||||
async fn op_tls_accept(
|
||||
pub async fn op_tls_accept(
|
||||
state: Rc<RefCell<OpState>>,
|
||||
rid: ResourceId,
|
||||
_: (),
|
||||
|
@ -1123,7 +1123,7 @@ async fn op_tls_accept(
|
|||
})
|
||||
}
|
||||
|
||||
async fn op_tls_handshake(
|
||||
pub async fn op_tls_handshake(
|
||||
state: Rc<RefCell<OpState>>,
|
||||
rid: ResourceId,
|
||||
_: (),
|
||||
|
|
Loading…
Reference in a new issue