Struct gnunet_sys::GNUNET_DNSPARSER_SrvRecord[][src]

#[repr(C)]pub struct GNUNET_DNSPARSER_SrvRecord {
    pub target: *mut c_char,
    pub priority: u16,
    pub weight: u16,
    pub port: u16,
}

Information from SRV records (RFC 2782).

Fields

target: *mut c_char

Hostname offering the service. In UTF-8 format. The library will convert from and to DNS-IDNA as necessary. Use #GNUNET_DNSPARSER_check_label() to test if an individual label is well-formed. If a given name is not well-formed, creating the DNS packet will fail.

priority: u16

Preference for this entry (lower value is higher preference). Clients will contact hosts from the lowest-priority group first and fall back to higher priorities if the low-priority entries are unavailable.

weight: u16

Relative weight for records with the same priority. Clients will use the hosts of the same (lowest) priority with a probability proportional to the weight given.

port: u16

TCP or UDP port of the service.

Trait Implementations

impl Clone for GNUNET_DNSPARSER_SrvRecord[src]

impl Copy for GNUNET_DNSPARSER_SrvRecord[src]

impl Debug for GNUNET_DNSPARSER_SrvRecord[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.