#!/bin/sh

if test -z "${SCSCF}" || test -z "${THISIP}"; then
  echo Please define the SCSCF and THISIP variables
  exit 1
fi

if test -z "${1}"; then
  echo Please specify a CSV subscriber file
  exit 1
fi

sipp -sf ../scenario/message_small.xml -t t1 $SCSCF -i $THISIP -inf $1 -m 1
