#!/bin/sh
# WARNING: This file was auto-generated. Do not edit!
if [ "${1}" = "-4" -o "${1}" = "-6" ]
then
  vers=${1}
  shift
else
  vers="-6"
fi
host=${1-0}
port=${2-443}
args=""
if [ $# -gt 2 ]
then
  shift; shift
  args="$@"
fi
exec /usr/bin/sslclient -RHl0 "$vers" $args -- "$host" "$port" /usr/local/bin/mconnect-io
