OK, had to pay more attention to the documentation. There's a :nowait key argument, which will prevent this behaviour. Below is an example code that handles it:
(defun haxe-network-process-sentinel (process input)
(message "haxe-network-process-sentinel <%s>" input)
(when (stringp input)
(cond
((or
(haxe-string-starts-with input "failed with code")
(haxe-string-starts-with input "connection broken by"))
(setq haxe-network-status 'error))
((string= input "open")
(setq haxe-network-status 'open))
(t (setq haxe-network-status 'open)
(haxe-append-server-response input)))))
;;;###autoload
(defun haxe-connect-to-compiler-server ()
"Starts HaXe compilations server and connects to it.
This function is bound to \\[haxe-connect-to-compiler-server]"
(interactive)
(let ((old-proc (get-process haxe-compiler-process)))
(if (and old-proc (equal (process-status old-proc) 'open))
(setq haxe-network-process old-proc)
(haxe-log 3 "Trying to connect to HaXe compiler on %s:%s"
haxe-server-host haxe-server-port)
(while (not (eql haxe-network-status 'open))
(setq haxe-network-process
(make-network-process
:name haxe-compiler-process
:family 'ipv4
:host haxe-server-host
:nowait t
:service haxe-server-port
;; :buffer haxe-network-process-buffer
:sentinel #'haxe-network-process-sentinel
:filter #'haxe-listen-filter))
(sleep-for 1))
(haxe-log 3 "Connected to HaXe compiler"))))
make-network-process? – David Schwartz Nov 14 '12 at 17:26:nowait tand then watch for the status in the sentinel. It will send "failed with code 111" message if it fails to connect. I need more minutes to make sure it is that. – wvxvw Nov 14 '12 at 17:37