IPWorks SNMP 2020 Kotlin Edition

Questions / Feedback?

BadPacket Event

Fired for erroneous and/or malformed messages.

Syntax

public open class DefaultSnmptcpmgrEventListener : SnmptcpmgrEventListener {
  ...
  public override fun badPacket(e: SnmptcpmgrBadPacketEvent) {}
  ...
}

public class SnmptcpmgrBadPacketEvent {
  val packet: ByteArray?
  val sourceAddress: String?
  val sourcePort: Int
  val errorCode: Int
  val errorDescription: String?
  var report: Boolean
}

Remarks

The full message is provided in the Packet parameter.

The BadPacket event is also fired when authentication fails for received packets due to a bad password or other reasons.

If the Report parameter is set to True, an unauthenticated error report will be sent to the client, otherwise the packet will be silently ignored.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks SNMP 2020 Kotlin Edition - Version 20.0 [Build 7941]