You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SaslMechanism.kt 329B

12345678910111213141516
  1. package com.dmdirc.ktirc.sasl
  2. import com.dmdirc.ktirc.IrcClient
  3. internal interface SaslMechanism {
  4. val ircName: String
  5. val priority: Int
  6. fun handleAuthenticationEvent(client: IrcClient, data: ByteArray?)
  7. }
  8. internal val supportedSaslMechanisms = listOf<SaslMechanism>(
  9. PlainMechanism()
  10. )