summaryrefslogtreecommitdiffstats
path: root/demo/nginx_proxy/demo-2/setup_client.sh
diff options
context:
space:
mode:
authorswarupn <swarupnpvt@gmail.com>2018-11-06 19:36:20 +0530
committerswarupn <swarupnpvt@gmail.com>2018-11-12 20:32:51 +0530
commit6b11ecb07f5612819635eb48ec26d94d1fc64cf1 (patch)
tree6a4b31c4a8f06644e8102d3da2bbf8b6deb67409 /demo/nginx_proxy/demo-2/setup_client.sh
parent07b448c987619766da5c12235f3f693f3cd60209 (diff)
Chore: NGINX demo with multi stack and multi protocol (vpp-hoststck, lwip, kernel) (tcp, udp)
Change-Id: I3feb3a88b75b8292e0d7df77e8ed41ee0e2fc0aa Signed-off-by: swarupn <swarupnpvt@gmail.com>
Diffstat (limited to 'demo/nginx_proxy/demo-2/setup_client.sh')
-rw-r--r--demo/nginx_proxy/demo-2/setup_client.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/demo/nginx_proxy/demo-2/setup_client.sh b/demo/nginx_proxy/demo-2/setup_client.sh
new file mode 100644
index 0000000..a0f4363
--- /dev/null
+++ b/demo/nginx_proxy/demo-2/setup_client.sh
@@ -0,0 +1,25 @@
+#########################################################################
+# Copyright (c) 2018 Huawei Technologies Co.,Ltd.
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#########################################################################
+#!/bin/bash -x
+
+set -x
+
+# Download nginx
+cd /CLIENT
+
+gcc udpclient.c -o udpclient
+
+exit 0
+