2020-02-04 15:42:04 +00:00
|
|
|
use crate::{
|
|
|
|
api::Promise,
|
|
|
|
message::{InCommingMessage, MessageBuffer, OutGoingMessage},
|
2020-02-21 13:08:34 +00:00
|
|
|
mpsc::MpscChannel,
|
|
|
|
tcp::TcpChannel,
|
|
|
|
types::{
|
2020-02-21 15:10:55 +00:00
|
|
|
Frame, IntStream, Mid, Pid, RemoteParticipant, RtrnMsg, Sid, VELOREN_MAGIC_NUMBER,
|
2020-02-21 13:08:34 +00:00
|
|
|
VELOREN_NETWORK_VERSION,
|
2020-02-20 16:04:58 +00:00
|
|
|
},
|
2020-02-21 13:08:34 +00:00
|
|
|
udp::UdpChannel,
|
2020-02-04 15:42:04 +00:00
|
|
|
};
|
|
|
|
use enumset::EnumSet;
|
|
|
|
use mio_extras::channel::Sender;
|
|
|
|
use std::{
|
|
|
|
collections::{HashMap, VecDeque},
|
2020-02-21 15:10:55 +00:00
|
|
|
sync::{mpsc, Arc, RwLock},
|
2020-02-04 15:42:04 +00:00
|
|
|
};
|
|
|
|
use tracing::*;
|
|
|
|
|
2020-02-10 17:25:47 +00:00
|
|
|
pub(crate) trait ChannelProtocol {
|
|
|
|
type Handle: ?Sized + mio::Evented;
|
2020-02-04 15:42:04 +00:00
|
|
|
/// Execute when ready to read
|
2020-02-10 17:25:47 +00:00
|
|
|
fn read(&mut self) -> Vec<Frame>;
|
2020-03-03 11:33:56 +00:00
|
|
|
/// Execute when ready to write
|
|
|
|
fn write<I: std::iter::Iterator<Item = Frame>>(&mut self, frames: &mut I);
|
2020-02-10 17:25:47 +00:00
|
|
|
/// used for mio
|
|
|
|
fn get_handle(&self) -> &Self::Handle;
|
2020-02-04 15:42:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
2020-02-20 16:04:58 +00:00
|
|
|
pub(crate) enum ChannelProtocols {
|
|
|
|
Tcp(TcpChannel),
|
|
|
|
Udp(UdpChannel),
|
|
|
|
Mpsc(MpscChannel),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub(crate) struct Channel {
|
2020-02-04 15:42:04 +00:00
|
|
|
pub stream_id_pool: Option<tlid::Pool<tlid::Wrapping<Sid>>>, /* TODO: stream_id unique per
|
|
|
|
* participant */
|
|
|
|
pub msg_id_pool: Option<tlid::Pool<tlid::Wrapping<Mid>>>, //TODO: msg_id unique per
|
|
|
|
// participant
|
|
|
|
pub local_pid: Pid,
|
|
|
|
pub remote_pid: Option<Pid>,
|
|
|
|
pub remotes: Arc<RwLock<HashMap<Pid, RemoteParticipant>>>,
|
2020-02-21 15:10:55 +00:00
|
|
|
pub streams: Vec<IntStream>,
|
2020-02-04 15:42:04 +00:00
|
|
|
pub send_queue: VecDeque<Frame>,
|
2020-02-20 16:04:58 +00:00
|
|
|
pub protocol: ChannelProtocols,
|
2020-02-21 15:10:55 +00:00
|
|
|
pub return_pid_to: Option<std::sync::mpsc::Sender<Pid>>, //use for network::connect()
|
2020-02-04 15:42:04 +00:00
|
|
|
pub send_handshake: bool,
|
|
|
|
pub send_pid: bool,
|
|
|
|
pub send_config: bool,
|
|
|
|
pub send_shutdown: bool,
|
|
|
|
pub recv_handshake: bool,
|
|
|
|
pub recv_pid: bool,
|
|
|
|
pub recv_config: bool,
|
|
|
|
pub recv_shutdown: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Participant A
|
|
|
|
Participant B
|
|
|
|
A sends Handshake
|
|
|
|
B receives Handshake and answers with Handshake
|
|
|
|
A receives Handshake and answers with ParticipantId
|
|
|
|
B receives ParticipantId and answeres with ParticipantId
|
|
|
|
A receives ParticipantId and answers with Configuration for Streams and Messages
|
|
|
|
---
|
|
|
|
A and B can now concurrently open Streams and send messages
|
|
|
|
---
|
|
|
|
Shutdown phase
|
|
|
|
*/
|
|
|
|
|
2020-02-20 16:04:58 +00:00
|
|
|
impl Channel {
|
2020-02-04 15:42:04 +00:00
|
|
|
const WRONG_NUMBER: &'static [u8] = "Handshake does not contain the magic number requiered by \
|
|
|
|
veloren server.\nWe are not sure if you are a valid \
|
|
|
|
veloren client.\nClosing the connection"
|
|
|
|
.as_bytes();
|
|
|
|
const WRONG_VERSION: &'static str = "Handshake does not contain a correct magic number, but \
|
|
|
|
invalid version.\nWe don't know how to communicate with \
|
|
|
|
you.\n";
|
|
|
|
|
2020-02-10 17:25:47 +00:00
|
|
|
pub fn new(
|
|
|
|
local_pid: Pid,
|
2020-02-20 16:04:58 +00:00
|
|
|
protocol: ChannelProtocols,
|
2020-02-10 17:25:47 +00:00
|
|
|
remotes: Arc<RwLock<HashMap<Pid, RemoteParticipant>>>,
|
2020-02-20 16:04:58 +00:00
|
|
|
return_pid_to: Option<std::sync::mpsc::Sender<Pid>>,
|
2020-02-10 17:25:47 +00:00
|
|
|
) -> Self {
|
|
|
|
Self {
|
2020-02-04 15:42:04 +00:00
|
|
|
stream_id_pool: None,
|
|
|
|
msg_id_pool: None,
|
|
|
|
local_pid,
|
|
|
|
remote_pid: None,
|
|
|
|
remotes,
|
|
|
|
streams: Vec::new(),
|
|
|
|
send_queue: VecDeque::new(),
|
2020-02-10 17:25:47 +00:00
|
|
|
protocol,
|
2020-02-20 16:04:58 +00:00
|
|
|
return_pid_to,
|
2020-02-04 15:42:04 +00:00
|
|
|
send_handshake: false,
|
|
|
|
send_pid: false,
|
|
|
|
send_config: false,
|
|
|
|
send_shutdown: false,
|
|
|
|
recv_handshake: false,
|
|
|
|
recv_pid: false,
|
|
|
|
recv_config: false,
|
|
|
|
recv_shutdown: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn can_send(&self) -> bool {
|
|
|
|
self.remote_pid.is_some()
|
|
|
|
&& self.recv_handshake
|
|
|
|
&& self.send_pid
|
|
|
|
&& self.recv_pid
|
|
|
|
&& (self.send_config || self.recv_config)
|
|
|
|
&& !self.send_shutdown
|
|
|
|
&& !self.recv_shutdown
|
|
|
|
}
|
|
|
|
|
2020-02-10 17:25:47 +00:00
|
|
|
pub fn tick_recv(&mut self, rtrn_tx: &Sender<RtrnMsg>) {
|
2020-02-20 16:04:58 +00:00
|
|
|
match &mut self.protocol {
|
|
|
|
ChannelProtocols::Tcp(c) => {
|
|
|
|
for frame in c.read() {
|
|
|
|
self.handle(frame, rtrn_tx);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ChannelProtocols::Udp(c) => {
|
|
|
|
for frame in c.read() {
|
|
|
|
self.handle(frame, rtrn_tx);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ChannelProtocols::Mpsc(c) => {
|
|
|
|
for frame in c.read() {
|
|
|
|
self.handle(frame, rtrn_tx);
|
|
|
|
}
|
|
|
|
},
|
2020-02-10 17:25:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn tick_send(&mut self) {
|
|
|
|
self.tick_streams();
|
2020-02-20 16:04:58 +00:00
|
|
|
match &mut self.protocol {
|
|
|
|
ChannelProtocols::Tcp(c) => {
|
2020-03-03 11:33:56 +00:00
|
|
|
c.write(&mut self.send_queue.drain(..));
|
2020-02-20 16:04:58 +00:00
|
|
|
},
|
|
|
|
ChannelProtocols::Udp(c) => {
|
2020-03-03 11:33:56 +00:00
|
|
|
c.write(&mut self.send_queue.drain(..));
|
2020-02-20 16:04:58 +00:00
|
|
|
},
|
|
|
|
ChannelProtocols::Mpsc(c) => {
|
2020-03-03 11:33:56 +00:00
|
|
|
c.write(&mut self.send_queue.drain(..));
|
2020-02-20 16:04:58 +00:00
|
|
|
},
|
2020-02-10 17:25:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle(&mut self, frame: Frame, rtrn_tx: &Sender<RtrnMsg>) {
|
2020-02-04 15:42:04 +00:00
|
|
|
match frame {
|
|
|
|
Frame::Handshake {
|
|
|
|
magic_number,
|
|
|
|
version,
|
|
|
|
} => {
|
|
|
|
if magic_number != VELOREN_MAGIC_NUMBER {
|
2020-02-28 15:57:39 +00:00
|
|
|
error!(
|
|
|
|
?magic_number,
|
|
|
|
"connection with invalid magic_number, closing connection"
|
|
|
|
);
|
2020-02-04 15:42:04 +00:00
|
|
|
self.wrong_shutdown(Self::WRONG_NUMBER);
|
|
|
|
}
|
|
|
|
if version != VELOREN_NETWORK_VERSION {
|
2020-02-28 15:57:39 +00:00
|
|
|
error!(?version, "tcp connection with wrong network version");
|
2020-02-04 15:42:04 +00:00
|
|
|
self.wrong_shutdown(
|
|
|
|
format!(
|
|
|
|
"{} Our Version: {:?}\nYour Version: {:?}\nClosing the connection",
|
|
|
|
Self::WRONG_VERSION,
|
|
|
|
VELOREN_NETWORK_VERSION,
|
|
|
|
version,
|
|
|
|
)
|
|
|
|
.as_bytes(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
debug!("handshake completed");
|
|
|
|
self.recv_handshake = true;
|
|
|
|
if self.send_handshake {
|
|
|
|
self.send_queue.push_back(Frame::ParticipantId {
|
|
|
|
pid: self.local_pid,
|
|
|
|
});
|
|
|
|
self.send_pid = true;
|
|
|
|
} else {
|
|
|
|
self.send_queue.push_back(Frame::Handshake {
|
|
|
|
magic_number: VELOREN_MAGIC_NUMBER.to_string(),
|
|
|
|
version: VELOREN_NETWORK_VERSION,
|
|
|
|
});
|
|
|
|
self.send_handshake = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Frame::ParticipantId { pid } => {
|
|
|
|
if self.remote_pid.is_some() {
|
|
|
|
error!(?pid, "invalid message, cant change participantId");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self.remote_pid = Some(pid);
|
|
|
|
debug!(?pid, "Participant send their ID");
|
|
|
|
self.recv_pid = true;
|
|
|
|
if self.send_pid {
|
|
|
|
let mut remotes = self.remotes.write().unwrap();
|
|
|
|
if !remotes.contains_key(&pid) {
|
|
|
|
remotes.insert(pid, RemoteParticipant::new());
|
2020-02-20 16:04:58 +00:00
|
|
|
} else {
|
|
|
|
warn!(
|
|
|
|
"a known participant opened an additional channel, UNCHECKED BECAUSE \
|
|
|
|
NO TOKEN WAS IMPLEMENTED IN THE HANDSHAKE!"
|
|
|
|
);
|
2020-02-04 15:42:04 +00:00
|
|
|
}
|
|
|
|
if let Some(rp) = remotes.get_mut(&pid) {
|
|
|
|
self.stream_id_pool = Some(rp.stream_id_pool.subpool(1000000).unwrap());
|
|
|
|
self.msg_id_pool = Some(rp.msg_id_pool.subpool(1000000).unwrap());
|
|
|
|
self.send_queue.push_back(Frame::Configure {
|
|
|
|
stream_id_pool: rp.stream_id_pool.subpool(1000000).unwrap(),
|
|
|
|
msg_id_pool: rp.msg_id_pool.subpool(1000000).unwrap(),
|
|
|
|
});
|
|
|
|
self.send_config = true;
|
|
|
|
info!(?pid, "this channel is now configured!");
|
2020-02-21 15:10:55 +00:00
|
|
|
rtrn_tx.send(RtrnMsg::ConnectedParticipant { pid });
|
2020-02-04 15:42:04 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.send_queue.push_back(Frame::ParticipantId {
|
|
|
|
pid: self.local_pid,
|
|
|
|
});
|
|
|
|
self.send_pid = true;
|
|
|
|
}
|
|
|
|
},
|
2020-02-20 16:04:58 +00:00
|
|
|
Frame::Configure {
|
|
|
|
stream_id_pool,
|
|
|
|
msg_id_pool,
|
|
|
|
} => {
|
|
|
|
self.recv_config = true;
|
|
|
|
//TODO remove range from rp! as this could probably cause duplicate ID !!!
|
|
|
|
let mut remotes = self.remotes.write().unwrap();
|
|
|
|
if let Some(pid) = self.remote_pid {
|
|
|
|
if !remotes.contains_key(&pid) {
|
|
|
|
remotes.insert(pid, RemoteParticipant::new());
|
|
|
|
}
|
|
|
|
if let Some(rp) = remotes.get_mut(&pid) {
|
|
|
|
self.stream_id_pool = Some(stream_id_pool);
|
|
|
|
self.msg_id_pool = Some(msg_id_pool);
|
|
|
|
}
|
|
|
|
if let Some(send) = &self.return_pid_to {
|
|
|
|
send.send(pid);
|
|
|
|
};
|
|
|
|
self.return_pid_to = None;
|
|
|
|
} else {
|
|
|
|
warn!(?self, "Protocol is done wrong!");
|
|
|
|
}
|
|
|
|
info!("recv config. This channel is now configured!");
|
|
|
|
},
|
2020-02-04 15:42:04 +00:00
|
|
|
Frame::Shutdown {} => {
|
|
|
|
self.recv_shutdown = true;
|
|
|
|
info!("shutting down channel");
|
2020-02-21 15:10:55 +00:00
|
|
|
rtrn_tx.send(RtrnMsg::Shutdown);
|
2020-02-04 15:42:04 +00:00
|
|
|
},
|
|
|
|
Frame::OpenStream {
|
|
|
|
sid,
|
|
|
|
prio,
|
|
|
|
promises,
|
|
|
|
} => {
|
|
|
|
if let Some(pid) = self.remote_pid {
|
2020-02-21 15:10:55 +00:00
|
|
|
let (msg_tx, msg_rx) = mpsc::channel::<InCommingMessage>();
|
|
|
|
let stream = IntStream::new(sid, prio, promises.clone(), msg_tx);
|
2020-02-04 15:42:04 +00:00
|
|
|
self.streams.push(stream);
|
|
|
|
info!("opened a stream");
|
2020-02-21 15:10:55 +00:00
|
|
|
rtrn_tx.send(RtrnMsg::OpendStream {
|
|
|
|
pid,
|
|
|
|
sid,
|
|
|
|
prio,
|
|
|
|
msg_rx,
|
|
|
|
promises,
|
|
|
|
});
|
2020-02-04 15:42:04 +00:00
|
|
|
} else {
|
|
|
|
error!("called OpenStream before PartcipantID!");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Frame::CloseStream { sid } => {
|
|
|
|
if let Some(pid) = self.remote_pid {
|
|
|
|
self.streams.retain(|stream| stream.sid() != sid);
|
|
|
|
info!("closed a stream");
|
2020-02-21 15:10:55 +00:00
|
|
|
rtrn_tx.send(RtrnMsg::ClosedStream { pid, sid });
|
2020-02-04 15:42:04 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
Frame::DataHeader { mid, sid, length } => {
|
|
|
|
debug!("Data Header {}", sid);
|
|
|
|
let imsg = InCommingMessage {
|
|
|
|
buffer: MessageBuffer { data: Vec::new() },
|
|
|
|
length,
|
|
|
|
mid,
|
|
|
|
sid,
|
|
|
|
};
|
|
|
|
let mut found = false;
|
|
|
|
for s in &mut self.streams {
|
|
|
|
if s.sid() == sid {
|
|
|
|
//TODO: move to Hashmap, so slow
|
|
|
|
s.to_receive.push_back(imsg);
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
error!("couldn't find stream with sid: {}", sid);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Frame::Data {
|
|
|
|
id,
|
|
|
|
start,
|
|
|
|
mut data,
|
|
|
|
} => {
|
|
|
|
debug!("Data Package {}, len: {}", id, data.len());
|
|
|
|
let mut found = false;
|
|
|
|
for s in &mut self.streams {
|
|
|
|
let mut pos = None;
|
|
|
|
for i in 0..s.to_receive.len() {
|
|
|
|
let m = &mut s.to_receive[i];
|
|
|
|
if m.mid == id {
|
|
|
|
found = true;
|
|
|
|
m.buffer.data.append(&mut data);
|
|
|
|
if m.buffer.data.len() as u64 == m.length {
|
|
|
|
pos = Some(i);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if let Some(pos) = pos {
|
2020-02-21 15:10:55 +00:00
|
|
|
let sid = s.sid();
|
|
|
|
let tx = s.msg_tx();
|
2020-02-04 15:42:04 +00:00
|
|
|
for m in s.to_receive.drain(pos..pos + 1) {
|
2020-02-21 15:10:55 +00:00
|
|
|
info!(?sid, ? m.mid, "received message");
|
|
|
|
tx.send(m).unwrap();
|
2020-02-04 15:42:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
error!("couldn't find stream with mid: {}", id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Frame::Raw(data) => {
|
|
|
|
info!("Got a Raw Package {:?}", data);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function will tick all streams according to priority and add them to the
|
|
|
|
// send queue
|
2020-02-10 17:25:47 +00:00
|
|
|
fn tick_streams(&mut self) {
|
2020-02-04 15:42:04 +00:00
|
|
|
//ignoring prio for now
|
|
|
|
//TODO: fix prio
|
|
|
|
if let Some(msg_id_pool) = &mut self.msg_id_pool {
|
|
|
|
for s in &mut self.streams {
|
|
|
|
let mut remove = false;
|
|
|
|
let sid = s.sid();
|
|
|
|
if let Some(m) = s.to_send.front_mut() {
|
|
|
|
let to_send = std::cmp::min(m.buffer.data.len() as u64 - m.cursor, 1400);
|
|
|
|
if to_send > 0 {
|
|
|
|
if m.cursor == 0 {
|
|
|
|
let mid = msg_id_pool.next();
|
|
|
|
m.mid = Some(mid);
|
|
|
|
self.send_queue.push_back(Frame::DataHeader {
|
|
|
|
mid,
|
|
|
|
sid,
|
|
|
|
length: m.buffer.data.len() as u64,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
self.send_queue.push_back(Frame::Data {
|
|
|
|
id: m.mid.unwrap(),
|
|
|
|
start: m.cursor,
|
|
|
|
data: m.buffer.data[m.cursor as usize..(m.cursor + to_send) as usize]
|
|
|
|
.to_vec(),
|
|
|
|
});
|
|
|
|
};
|
|
|
|
m.cursor += to_send;
|
|
|
|
if m.cursor == m.buffer.data.len() as u64 {
|
|
|
|
remove = true;
|
|
|
|
debug!(?m.mid, "finish message")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if remove {
|
|
|
|
s.to_send.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn wrong_shutdown(&mut self, raw: &[u8]) {
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
{
|
|
|
|
debug!("sending client instructions before killing");
|
|
|
|
self.send_queue.push_back(Frame::Raw(raw.to_vec()));
|
|
|
|
self.send_queue.push_back(Frame::Shutdown {});
|
|
|
|
self.send_shutdown = true;
|
|
|
|
}
|
|
|
|
}
|
2020-02-10 17:25:47 +00:00
|
|
|
|
2020-02-21 15:10:55 +00:00
|
|
|
pub(crate) fn open_stream(
|
|
|
|
&mut self,
|
|
|
|
prio: u8,
|
|
|
|
promises: EnumSet<Promise>,
|
|
|
|
msg_tx: mpsc::Sender<InCommingMessage>,
|
|
|
|
) -> Sid {
|
2020-02-10 17:25:47 +00:00
|
|
|
// validate promises
|
|
|
|
if let Some(stream_id_pool) = &mut self.stream_id_pool {
|
|
|
|
let sid = stream_id_pool.next();
|
2020-02-20 16:04:58 +00:00
|
|
|
trace!(?sid, "going to open a new stream");
|
2020-02-21 15:10:55 +00:00
|
|
|
let stream = IntStream::new(sid, prio, promises.clone(), msg_tx);
|
2020-02-10 17:25:47 +00:00
|
|
|
self.streams.push(stream);
|
|
|
|
self.send_queue.push_back(Frame::OpenStream {
|
|
|
|
sid,
|
|
|
|
prio,
|
|
|
|
promises,
|
|
|
|
});
|
|
|
|
return sid;
|
2020-02-20 16:04:58 +00:00
|
|
|
} else {
|
|
|
|
panic!("cant open stream because connection isn't initialized");
|
2020-02-10 17:25:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-20 16:04:58 +00:00
|
|
|
pub(crate) fn close_stream(&mut self, sid: Sid) {
|
2020-02-10 17:25:47 +00:00
|
|
|
self.streams.retain(|stream| stream.sid() != sid);
|
|
|
|
self.send_queue.push_back(Frame::CloseStream { sid });
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn handshake(&mut self) {
|
|
|
|
self.send_queue.push_back(Frame::Handshake {
|
|
|
|
magic_number: VELOREN_MAGIC_NUMBER.to_string(),
|
|
|
|
version: VELOREN_NETWORK_VERSION,
|
|
|
|
});
|
|
|
|
self.send_handshake = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn shutdown(&mut self) {
|
|
|
|
self.send_queue.push_back(Frame::Shutdown {});
|
|
|
|
self.send_shutdown = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn send(&mut self, outgoing: OutGoingMessage) {
|
|
|
|
for s in self.streams.iter_mut() {
|
2020-02-20 16:04:58 +00:00
|
|
|
if s.sid() == outgoing.sid {
|
|
|
|
s.to_send.push_back(outgoing);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-10 17:25:47 +00:00
|
|
|
}
|
2020-02-20 16:04:58 +00:00
|
|
|
let sid = &outgoing.sid;
|
|
|
|
error!(?sid, "couldn't send message, didn't found sid")
|
2020-02-10 17:25:47 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 16:04:58 +00:00
|
|
|
pub(crate) fn get_protocol(&self) -> &ChannelProtocols { &self.protocol }
|
2020-02-04 15:42:04 +00:00
|
|
|
}
|