about summary refs log tree commit diff
path: root/src/libstd/sys/redox/net/dns/query.rs
blob: dcb554d82debbb6421357371d429911ecbb42ef0 (plain)
1
2
3
4
5
6
7
8
use string::String;

#[derive(Clone, Debug)]
pub struct DnsQuery {
    pub name: String,
    pub q_type: u16,
    pub q_class: u16
}