Home
last modified time | relevance | path

Searched defs:StreamState (Results 1 – 2 of 2) sorted by relevance

/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/
Dbio.rs128 pub(crate) struct StreamState<S> { struct
134 unsafe fn get_state<'a, S: 'a>(bio: *mut BIO) -> &'a mut StreamState<S> { in get_state() argument
149 let state: &'a StreamState<S> = &*(BIO_get_data(bio) as *const StreamState<S>); in get_stream_ref() constant
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
Ddispatcher.rs289 pub(crate) enum StreamState { enum
398 pub(crate) fn recv_headers(&mut self, id: u32) -> Result<StreamState, H2Error> { in recv_headers()
416 pub(crate) fn recv_data(&mut self, id: u32) -> Result<StreamState, H2Error> { in recv_data()