emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Connection drops data if it sent too quickly


From: Michael Albinus
Subject: Re: Connection drops data if it sent too quickly
Date: 05 Feb 2003 16:24:00 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7

Richard Stallman <address@hidden> writes:

> Perhaps we should put that into process-send-string so that Lisp code
> won't need to concern itself with this issue.  But I wonder
> whether the bug is in ssh.  If so, that's the place to fix it.
> 
> If Emacs is talking to some other program instead, does the same
> bug happen?

I've written some few lines which reproduce the problem under HP-UX
with all Emacsen available for me (20.7, 21.2, 21.2.93):

(with-temp-buffer
  (let ((bytes 1000)
        (proc (start-process (buffer-name) (current-buffer) "wc" "-c")))
    (process-send-string proc (make-string bytes ?x))
    (process-send-eof proc)
    (process-send-eof proc)
    (accept-process-output proc 1)
    (goto-char (point-min))
    (re-search-forward "\\w+")
    (message "Bytes sent: %s\tBytes received: %s" bytes (match-string 0))))

No problem under other Unices, like Solaris.

Best regards, Michael.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]