SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_request Event

Fires when a request is received from the client.

Syntax

class KMIPServerRequestEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def operation() -> str: ...
  @property
  def username() -> str: ...
  @property
  def reject() -> bool: ...
  @reject.setter
  def reject(value) -> None: ...

# In class KMIPServer:
@property
def on_request() -> Callable[[KMIPServerRequestEventParams], None]: ...
@on_request.setter
def on_request(event_hook: Callable[[KMIPServerRequestEventParams], None]) -> None: ...

Remarks

The Operation parameter specifies the operation to perform, and Username the originator of the request. Use the Reject parameter to reject the request.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Python Edition - Version 20.0 [Build 8154]