Skip to content

Commit 5406765

Browse files
committed
docs: tweak headings
1 parent bc4699f commit 5406765

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ This module is built for Node.js and does not currently work in browsers.
2222

2323
## Features
2424

25-
* **Authentication** - Optional authentication step for initiating session data and filtering incoming clients.
26-
* **[OCPP Security](#ocpp-security)** - Compatible with OCPP security profiles 1, 2 & 3.
27-
* **Serve multiple subprotocols** - Simultaneously serve multiple different subprotocols from the same service endpoint.
28-
* **[Strict Validation](#strict-validation)** - Optionally enforce subprotocol schemas to prevent invalid calls & responses.
25+
* 🛂 **Authentication** - Optional authentication step for initiating session data and filtering incoming clients.
26+
* 🔒 **[OCPP Security](#ocpp-security)** - Compatible with OCPP security profiles 1, 2 & 3.
27+
* 💬 **Serve multiple subprotocols** - Simultaneously serve multiple different subprotocols from the same service endpoint.
28+
* **[Strict Validation](#strict-validation)** - Optionally enforce subprotocol schemas to prevent invalid calls & responses.
2929
* **Automatic reconnects** - Client supports automatic exponential-backoff reconnects.
3030
* **Automatic keep-alive** - Regularly performs pings, and drops dangling TCP connections.
3131
* **Graceful shutdowns** - Supports waiting for all in-flight messages to be responded to before closing sockets.
@@ -864,7 +864,7 @@ This security profile requires a TLS-secured central system and client-side cert
864864

865865
The client-side example is fairly straight-forward:
866866

867-
#### TLS Client Example
867+
#### mTLS Client Example
868868

869869
```js
870870
const { RPCClient } = require('ocpp-rpc');
@@ -883,7 +883,7 @@ const cli = new RPCClient({
883883
await cli.connect();
884884
```
885885

886-
#### TLS Server Example
886+
#### mTLS Server Example
887887

888888
This example is very similar to the example for [security profile 2](#security-profile-2), except for these changes:
889889

0 commit comments

Comments
 (0)