tox_core 0.1.1

The core of tox
Documentation
/*! Common utility functions
*/

use tox_crypto::*;

/// Generate non-zero ping_id
pub fn gen_ping_id() -> u64 {
    let mut ping_id = 0;
    while ping_id == 0 {
        ping_id = random_u64();
    }
    ping_id
}