The nsIFTPEventSink is an extension of nsISupports. It can be used as a notification callback on an FTP channel.

netwerk/protocol/ftp/nsIFTPChannel.idlScriptable
Please add a summary to this article.
  Last changed in Gecko 1.9 (Firefox 3)

Inherits from: nsISupports

Method Overview

void OnFTPControlLog(in boolean server, in string msg)

Methods

OnFTPControlLog

Allows a consumer to receive a log of the FTP control connection conversation.

void OnFTPControlLog (
  in boolean server,
  in string msg
);
Parameters

server
    A boolean value specifying whether you are a server or a client.
msg
    A string holding response of the last command which had been sent.

See also