summaryrefslogtreecommitdiff
path: root/src/app/portmaster.clj
diff options
context:
space:
mode:
authorDavid Barksdale <amatus@amat.us>2017-04-23 11:25:26 -0500
committerDavid Barksdale <amatus@amat.us>2017-04-23 11:25:26 -0500
commit808c02ef8570b624262f37e6c06d1776f4270e6e (patch)
treef3dd6348272535b6ec4abb30ea522ffcf0196b96 /src/app/portmaster.clj
parent1ba2f3e437281adef7b9ffdd724a13eb78a1d3a3 (diff)
I hate termios
Diffstat (limited to 'src/app/portmaster.clj')
-rw-r--r--src/app/portmaster.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/portmaster.clj b/src/app/portmaster.clj
index 28da2f3..1d34c88 100644
--- a/src/app/portmaster.clj
+++ b/src/app/portmaster.clj
@@ -88,7 +88,7 @@
(let [socat (.. (ProcessBuilder.
(into-array ["socat"
"-v"
- (str "OPEN:" port-name ",b9600,raw")
+ (str "OPEN:" port-name ",b9600,ignbrk=1,brkint=0,icrnl=0,imaxbel=0,opost=0,onlcr=0,isig=0,icanon=0,iexten=0,echo=0,echoe=0,echok=0,echoctl=0,echoke=0")
"-"]))
(redirectError (File. "/tmp/portmaster.log"))
(start))