From 18ea4eba7fcd252236b456062561dc164d7de72b Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Thu, 28 Feb 2019 14:01:53 -0600 Subject: [PATCH] nit --- concurrency-webserver/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concurrency-webserver/README.md b/concurrency-webserver/README.md index 725edb0..45f2fe2 100644 --- a/concurrency-webserver/README.md +++ b/concurrency-webserver/README.md @@ -288,7 +288,7 @@ but perhaps those are beyond the scope of the project. Your C program must be invoked exactly as follows: ```sh -prompt> ./wserver [-d ] [-p ] [-t ] [-b ] [-s ] +prompt> ./wserver [-d basedir] [-p port] [-t threads] [-b buffers] [-s schedalg] ``` The command line arguments to your web server are to be interpreted as @@ -298,7 +298,7 @@ follows. operate. The server should try to ensure that file accesses do not access files above this directory in the file-system hierarchy. Default: current working directory (e.g., `.`). -- **portnum**: the port number that the web server should listen on; the basic web +- **port**: the port number that the web server should listen on; the basic web server already handles this argument. Default: 10000. - **threads**: the number of worker threads that should be created within the web server. Must be a positive integer. Default: 1.