Skip to content

Commit

Permalink
readme: fix Github markdown rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
mscdex committed Sep 16, 2024
1 parent cb6747b commit 5c10388
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1056,16 +1056,18 @@ You can find more examples in the `examples` directory of this repository.

* **comments** - _string_ - Any text that comes after the software name/version.

Example: the identification string `SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2` would be parsed as:
Example: the identification string `SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2` would be parsed as:

```js
{ identRaw: 'SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2',
```js
{
identRaw: 'SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2',
version: {
protocol: '2.0',
software: 'OpenSSH_6.6.1p1'
},
comments: 'Ubuntu-2ubuntu2' }
```
comments: 'Ubuntu-2ubuntu2'
}
```

* **ip** - _string_ - The `remoteAddress` of the connection.

Expand Down

0 comments on commit 5c10388

Please sign in to comment.