From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 1/6] ipsec: add new function ipsec_list_connections Date: Thu, 03 Aug 2017 12:51:22 +0200 Message-ID: <1501757487-5782-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2859878445516703021==" List-Id: --===============2859878445516703021== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/functions/functions.ipsec | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/functions/functions.ipsec b/src/functions/functions.ipsec index ed889a6..a174a7f 100644 --- a/src/functions/functions.ipsec +++ b/src/functions/functions.ipsec @@ -729,3 +729,12 @@ ipsec_connection_destroy() { fi done } + +# List all ipsec connections +ipsec_list_connections() { + local connection + for connection in ${NETWORK_IPSEC_CONNS_DIR}/*; do + [ -d ${connection} ] || continue + basename ${connection} + done +} -- 2.6.3 --===============2859878445516703021==--