From d53f2f0a8e095ab1a925b02b23e76b2135c248aa Mon Sep 17 00:00:00 2001 From: Ulf Jaenicke-Roessler Date: Fri, 15 Feb 2019 13:34:30 +0100 Subject: [PATCH] Server property 'greeting' added --- types/ssh2/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/ssh2/index.d.ts b/types/ssh2/index.d.ts index cf88fff5f1..8e03805817 100644 --- a/types/ssh2/index.d.ts +++ b/types/ssh2/index.d.ts @@ -729,6 +729,8 @@ export interface ServerConfig { /** Explicit overrides for the default transport layer algorithms used for the connection. */ algorithms?: Algorithms; /** A message that is sent to clients immediately upon connection, before handshaking begins. */ + greeting?: string + /** A message that is sent to clients once, right before authentication begins. */ banner?: string; /** A custom server software name/version identifier. */ ident?: string;