"It's me FKtPp ;)" <[EMAIL PROTECTED]> writes:

> Tramp works before I upgraded some libs. But it needs the

Did you update libs of FreeBSD (which one), or did you update Tramp?

> tramp-chunksize after that, even the
>
> (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))))
>
> function returns 1000, 1000.

???

That's the expected behaviour; it means that 1000 bytes have passed
`process-send-string'.

Do you mean, that you still need setting `tramp-chunksize', despite of
the successfull test above?

Best regards, Michael.


_______________________________________________
Tramp-devel mailing list
[EMAIL PROTECTED]
http://mail.nongnu.org/mailman/listinfo/tramp-devel

Reply via email to