diff --git a/run-process.el b/run-process.el new file mode 100644 index 0000000..54ddbcd --- /dev/null +++ b/run-process.el @@ -0,0 +1,13 @@ +(require 'map) +(load-file "/home/hugo/projects/stomp/stomp.el") + +(setq proc (make-process + :name "stomp-client" + :buffer "Barry" + :command "nc localhost 61613" + :filter (stomp-filter-function (lambda (message) (message "%s" message))))) + +(setq message ()) +(stomp-send-message proc (map-put message 'command "CONNECT")) + + diff --git a/stomp.el b/stomp.el index dc04574..1e39900 100644 Binary files a/stomp.el and b/stomp.el differ