From e090c4d0c825237be589b46f5f4529a45ed54f96 Mon Sep 17 00:00:00 2001
From: postmannen <postmannen@gmail.com>
Date: Wed, 14 Jun 2023 06:53:42 +0200
Subject: [PATCH] updated readme for request methods writing to sockets

---
 README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/README.md b/README.md
index c0066c1..20eb80a 100644
--- a/README.md
+++ b/README.md
@@ -790,6 +790,8 @@ If the value of the **directory** field is not prefixed with `./` or `/` the dir
 ]
 ```
 
+If there is already a file at the specified path with the specified name, and if that file is a socket, then the request method will automatically switch to socket communication and write to the socket instead of normal file writing.
+
 #### REQToFile
 
 Write the output of the reply message to a file specified with the `directory` and `fileName` fields, where the writing will write over any existing content of that file.
@@ -809,6 +811,8 @@ If the value of the **directory** field is not prefixed with `./` or `/` the dir
 ]
 ```
 
+If there is already a file at the specified path with the specified name, and if that file is a socket, then the request method will automatically switch to socket communication and write to the socket instead of normal file writing.
+
 #### REQToFileNACK
 
 Same as REQToFile, but will not send an ACK when a message is delivered.