1/// The protocol name that is used when a client and server connect. 2pub struct ProtocolInfo { 3 // the name of the protocol (i.e. rpc service) 4 pub protocol_name: &'static str, 5 pub protocol_version: u64, 6}