blueshim 0.0.0

An open source iMessage implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//!
//! # Apple Push Notification Service (APNs)
//!

#[derive(Deserialize)]
pub(crate) struct ApnsInitBag {
    #[serde(rename = "APNSCourierHostname")]
    pub courier_hostname: String,
    #[serde(rename = "APNSVerifiedCourierHostname")]
    pub verified_courier_hostname: String,
    #[serde(rename = "APNSCourierHostcount")]
    pub courier_host_ct: u16,
    #[serde(rename = "ClientConnectionRetryAttempts")]
    pub client_conn_retries: u16,
    #[serde(rename = "APNSCourierStatus")]
    pub courier_status: bool,
}