Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EXTERNAL] Project net-cat: Remove confusing quotes #2824

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions subjects/net-cat/audit/README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
#### Functional

##### Try running `"./TCPChat"`.
##### Try running `./TCPChat`.

###### Is the server listening for connections on the default port?

##### Try running `"./TCPChat" 2525 localhost`.
##### Try running `./TCPChat 2525 localhost`.

```
[USAGE]: ./TCPChat $port
```

###### Did the server respond with usage, as above?

##### Try running `"./TCPChat 2525"`.
##### Try running `./TCPChat 2525`.

###### Is the server listening for connections on the port 2525?

##### Try opening 3 terminals, run on the first terminal the command `"./TCPChat <port>"` and on the second and third terminal run the command `"nc <host ip> <port>"`.
##### Try opening 3 terminals, run on the first terminal the command `./TCPChat <port>` and on the second and third terminal run the command `nc <host ip> <port>`.

###### Do both clients connect to the server with success?

Expand Down
Loading