commonMain.com.ditchoom.mqtt3.persistence.ConnectionRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mqtt-4-models Show documentation
Show all versions of mqtt-4-models Show documentation
Defines the MQTT 3 and 4 control packets
package com.ditchoom.mqtt3.persistence
import kotlin.ByteArray
import kotlin.Long
import kotlin.String
public data class ConnectionRequest(
public val broker_id: Long,
public val protocol_name: String,
public val protocol_level: Long,
public val will_retain: Long,
public val will_qos: Long,
public val will_flag: Long,
public val clean_session: Long,
public val keep_alive_seconds: Long,
public val client_id: String,
public val will_topic: String?,
public val will_payload: ByteArray?,
public val username: String?,
public val password: String?,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy