rust/hedgewars-server/src/handlers/checker.rs
author unc0rr
Sat, 12 Oct 2019 23:13:32 +0200
changeset 15479 e0ab70a90718
parent 15125 febccab419b1
permissions -rw-r--r--
Add utility to convert server-side replay files into hwd binary format

use log::*;
use mio;

use crate::{
    core::{server::HwServer, types::ClientId},
    protocol::messages::HwProtocolMessage,
};

pub fn handle(_server: &mut HwServer, _client_id: ClientId, message: HwProtocolMessage) {
    match message {
        _ => warn!("Unknown command"),
    }
}