2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-06-16 22:44:04 +04:00
|
|
|
|
2006-03-03 19:27:35 +03:00
|
|
|
#include "nsISupports.idl"
|
2000-06-16 22:44:04 +04:00
|
|
|
|
2006-03-03 19:27:35 +03:00
|
|
|
/**
|
|
|
|
* This interface may be used to determine if a channel is a FTP channel.
|
|
|
|
*/
|
2010-01-30 20:58:01 +03:00
|
|
|
[scriptable, uuid(07f0d5cd-1fd5-4aa3-b6fc-665bdc5dbf9f)]
|
2006-03-03 19:27:35 +03:00
|
|
|
interface nsIFTPChannel : nsISupports
|
2000-06-16 22:44:04 +04:00
|
|
|
{
|
2010-01-30 20:58:01 +03:00
|
|
|
attribute PRTime lastModifiedTime;
|
2000-06-16 22:44:04 +04:00
|
|
|
};
|
2000-07-25 09:45:56 +04:00
|
|
|
|
2006-03-03 19:27:35 +03:00
|
|
|
/**
|
|
|
|
* This interface may be defined as a notification callback on the FTP
|
|
|
|
* channel. It allows a consumer to receive a log of the FTP control
|
|
|
|
* connection conversation.
|
|
|
|
*/
|
2001-04-13 03:32:47 +04:00
|
|
|
[scriptable, uuid(455d4234-0330-43d2-bbfb-99afbecbfeb0)]
|
|
|
|
interface nsIFTPEventSink : nsISupports
|
|
|
|
{
|
2006-03-03 19:27:35 +03:00
|
|
|
/**
|
|
|
|
* XXX document this method! (see bug 328915)
|
|
|
|
*/
|
2001-04-13 03:32:47 +04:00
|
|
|
void OnFTPControlLog(in boolean server, in string msg);
|
|
|
|
};
|