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 235B

123456789101112
  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. }