Struct mles_utils::MsgHdr [] [src]

pub struct MsgHdr { /* fields omitted */ }

MsgHdr structure

This structure defines the header of the Mles message including first 'M' byte, length of the encoded data, connection id and SipHash key. Encoded message will always be in network byte order.

Methods

impl MsgHdr
[src]

[src]

Create a new MsgHdr object with length, cid and key.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let msghdr = MsgHdr::new(len, cid, key);

[src]

Get type of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.get_type();
assert_eq!('M' as u8, msghdr.get_type());

[src]

Get MsgHdr length on the line.

[src]

Set length of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.set_len(515);

[src]

Get length of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.set_len(515);
assert_eq!(515, msghdr.get_len());

[src]

Set cid of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.set_cid(515);

[src]

Get cid of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.set_cid(515);
assert_eq!(515, msghdr.get_cid());

[src]

Set key of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.set_key(515);

[src]

Get key of MsgHdr.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
msghdr.set_key(515);
assert_eq!(515, msghdr.get_key());

[src]

Encode MsgHdr to line format.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 0;

let mut msghdr = MsgHdr::new(len, cid, key);
let msgv: Vec<u8> = msghdr.encode();

[src]

Decode MsgHdr from line format.

Example

use mles_utils::{MsgHdr};

let key = 0xf00f;
let cid = MsgHdr::select_cid(key); 
let len = 16;

let mut msghdr = MsgHdr::new(len, cid, key);
let msgv: Vec<u8> = msghdr.encode();
let msgh = MsgHdr::decode(msgv);
assert_eq!(key, msgh.get_key());
assert_eq!(cid, msgh.get_cid());
assert_eq!(len, msgh.get_len());

[src]

Do a valid hash for Mles over provided UTF-8 String list.

Example

use mles_utils::MsgHdr;

let hashstr1 = "A string".to_string();
let hashstr2 = "Another string".to_string();
let hashable = vec![hashstr1, hashstr2];
let key: u64 = MsgHdr::do_hash(&hashable); 

[src]

Return a connection id from key.

Example

use mles_utils::MsgHdr;

let cid = MsgHdr::select_cid(0x1000000100000001);
assert_eq!(cid, 0x00000001);

[src]

Do a valid UTF-8 string from a SocketAddr.

For IPv4 the format is "x.x.x.x:y", where x is u8 and y is u16 For IPv6 the format is "[z:z:z:z:z:z:z:z]:y", where z is u16 in hexadecimal format and y is u16

Example

use std::net::{SocketAddr, IpAddr, Ipv4Addr, Ipv6Addr};
use mles_utils::MsgHdr;

let addr = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
let addrstr = MsgHdr::addr2str(&addr);

assert_eq!("127.0.0.1:8080", addrstr);

let addr = SocketAddr::new(IpAddr::V6(Ipv6Addr::new(0xff03, 0, 0, 0, 0, 0, 0, 1)), 8077);
let addrstr = MsgHdr::addr2str(&addr);

assert_eq!("[ff03:0:0:0:0:0:0:1]:8077", addrstr);