more inline doc

pull/19/head
Niko PLP 2 years ago
parent 0710b4ef45
commit 96f2b67003
  1. 3
      p2p-broker/src/connection_local.rs
  2. 4
      p2p-broker/src/server_ws.rs
  3. 2
      p2p-client/src/connection_remote.rs
  4. 2
      p2p-client/src/connection_ws.rs

@ -7,8 +7,7 @@
// notice may not be copied, modified, or distributed except // notice may not be copied, modified, or distributed except
// according to those terms. // according to those terms.
//! Connection to a Broker, can be local or remote. //! Local Connection to a Broker
//! If remote, it will use a Stream and Sink of framed messages
use futures::{ use futures::{
ready, ready,

@ -9,6 +9,8 @@
* according to those terms. * according to those terms.
*/ */
//! WebSocket implementation of the Broker
use async_std::net::{TcpListener, TcpStream}; use async_std::net::{TcpListener, TcpStream};
use async_std::sync::Mutex; use async_std::sync::Mutex;
use async_std::task; use async_std::task;
@ -25,7 +27,7 @@
use tempfile::Builder; use tempfile::Builder;
use std::{thread, time}; use std::{thread, time};
pub async fn connection_loop(tcp: TcpStream, mut handler: ProtocolHandler) -> std::io::Result<()> { async fn connection_loop(tcp: TcpStream, mut handler: ProtocolHandler) -> std::io::Result<()> {
let mut ws = accept_async(tcp).await.unwrap(); let mut ws = accept_async(tcp).await.unwrap();
let (mut tx, mut rx) = ws.split(); let (mut tx, mut rx) = ws.split();

@ -9,6 +9,8 @@
* according to those terms. * according to those terms.
*/ */
//! Remote Connection to a Broker
use async_std::task; use async_std::task;
use async_std::sync::Mutex; use async_std::sync::Mutex;
use futures::{ use futures::{

@ -9,6 +9,8 @@
* according to those terms. * according to those terms.
*/ */
//! WebSocket Remote Connection to a Broker
use debug_print::*; use debug_print::*;
use p2p_repo::types::*; use p2p_repo::types::*;

Loading…
Cancel
Save