aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/FAQ
diff options
context:
space:
mode:
Diffstat (limited to 'docs/FAQ')
-rw-r--r--docs/FAQ2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/FAQ b/docs/FAQ
index f8e6e8a..b5c4dcc 100644
--- a/docs/FAQ
+++ b/docs/FAQ
@@ -112,7 +112,7 @@ Yes, Webkit takes care of all of that. Not that we like all of these, but you c
They both have advantages and disadvantages:
* fifo's are _very_ easy to work with. You can write just plaintext commands into them, but they are unidirectional (you can only communicate in one direction)
- * Sockets are bidirectional but more complex. You cannot just write a plaintext string into them. In shellscripts you can use uzblctrl or netcat to work with sockets, when programming you need to use library functions.
+ * Sockets are bidirectional but more complex. You cannot just write a plaintext string into them. In shellscripts you can use socat to work with sockets, when programming you need to use library functions.
So, when writing scripts, using fifo's is usually the fastest method (because you do not need to fork another process), so fifo is preferred unless you need a response.