From dev-return-33712-archive-asf-public=cust-asf.ponee.io@mina.apache.org Sun Oct 28 03:36:54 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4E400180649 for ; Sun, 28 Oct 2018 03:36:54 +0100 (CET) Received: (qmail 70458 invoked by uid 500); 28 Oct 2018 02:36:53 -0000 Mailing-List: contact dev-help@mina.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mina.apache.org Delivered-To: mailing list dev@mina.apache.org Received: (qmail 70447 invoked by uid 99); 28 Oct 2018 02:36:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Oct 2018 02:36:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0871BE048B; Sun, 28 Oct 2018 02:36:52 +0000 (UTC) From: wh0 To: dev@mina.apache.org Reply-To: dev@mina.apache.org Message-ID: Subject: [GitHub] mina-sshd pull request #75: Core: Make checkConfig public Content-Type: text/plain Date: Sun, 28 Oct 2018 02:36:52 +0000 (UTC) GitHub user wh0 opened a pull request: https://github.com/apache/mina-sshd/pull/75 Core: Make checkConfig public `checkConfig` is documented in the README as a reference for how to configure an SshClient or SshServer, but we can't call it because it's protected. This method would be helpful to have for setting up some sensible defaults when you want to use this library for its protocol handling combined with custom connection management. You would be able to call `checkConfig` without, for example, the entire `start` method in SshServer. You can merge this pull request into a Git repository by running: $ git pull https://github.com/wh0/mina-sshd checkconfig Alternatively you can review and apply these changes as the patch at: https://github.com/apache/mina-sshd/pull/75.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #75 ---- commit 3f3d3afc39683f915c8c11bd26b62d69b605cc23 Author: w Date: 2018-10-28T02:12:40Z Core: Make checkConfig public ---- ---