Skip to content

youyuanwu/winasio-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

winasio-rs

ci codecov License: MIT

Windows Async I/O and Networking lib for Rust.

Winhttp

Winhttp in async mode with rust async await wrapper. Example snippit:

  let req = conn
    .open_request(
        HSTRING::from("GET"),
        HSTRING::from("hello/world"),
        HSTRING::from("HTTP/1.1"),
        HSTRING::new(),
        Some(vec![HSTRING::from("application/json")]),
        WINHTTP_OPEN_REQUEST_FLAGS(0), // not use WINHTTP_FLAG_SECURE
    )
    .unwrap();

  let mut async_req: HRequestAsync = HRequestAsync::new(req);

  async_req.async_send(HSTRING::new(), &[], 0).await.unwrap();

  async_req.async_receive_response().await.unwrap();

  loop {
      let len = async_req.async_query_data_available().await.unwrap();
      if len == 0 {
          break;
      }
      let mut buffer: Vec<u8> = vec![0; len as usize];
      let len_read = async_req
          .async_read_data(buffer.as_mut_slice(), len)
          .await
          .unwrap();
      assert!(len == len_read);
      let s = String::from_utf8_lossy(&buffer);
      print!("{}", s);
  }

See full working code in example test

MISC

C++ counterpart of this lib: winasio

License

MIT License

About

winhttp http.sys etc with rust async await

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages