commit f06895533bf78916b956936224d85be18deddbd6 Author: David Fifield david@bamsoftware.com Date: Thu Jul 5 07:39:43 2012 -0700
Listen only on localhost in flashproxy-exercise. --- experiments/exercise/exercise.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/experiments/exercise/exercise.sh b/experiments/exercise/exercise.sh index c60a97e..6a91806 100755 --- a/experiments/exercise/exercise.sh +++ b/experiments/exercise/exercise.sh @@ -21,7 +21,7 @@ trap stop EXIT date
cd "$FLASHPROXY_DIR" -./flashproxy-client.py --register ":$LOCAL_PORT" ":$REMOTE_PORT" & +./flashproxy-client.py --register "127.0.0.1:$LOCAL_PORT" ":$REMOTE_PORT" & PIDS_TO_KILL+=($!)
sleep 20