getting ftp:// urls working. Ftp urls to a file will work.

Still ftp directory and ftp authentication need implementation.
This commit is contained in:
dp%netscape.com 1999-03-21 19:38:45 +00:00
Родитель 13372716ec
Коммит 77d4592bed
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -102,6 +102,8 @@ NS_InitializeHttpURLFactory(nsINetService* inet)
if (rv != NS_OK) goto done;
// XXX Hacks until we have real urlf objects for these...
inet->RegisterProtocol(*new nsString("ftp"), urlf, NULL);
if (rv != NS_OK) goto done;
inet->RegisterProtocol(*new nsString("resource"), urlf, NULL);
if (rv != NS_OK) goto done;
inet->RegisterProtocol(*new nsString("file"), urlf, NULL);