SecureBlackbox 2020 Qt Edition

Questions / Feedback?

Request Event

Fires when a request is received from the client.

Syntax

class KMIPServerRequestEventParams {
public:
  qint64 ConnectionId();
  const QString &Operation();
  const QString &Username();
  bool Reject();
  void SetReject(bool bReject);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Request(KMIPServerRequestEventParams *e);
// Or, subclass KMIPServer and override this emitter function. virtual int FireRequest(KMIPServerRequestEventParams *e) {...}

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 Qt Edition - Version 20.0 [Build 8154]