瀏覽代碼

Updating links

Source commit: 59d3a5c87219b542c6b43bd992db5b0f1cd94f87
Martin Prikryl 8 年之前
父節點
當前提交
504f283ff4

+ 2 - 5
source/filezilla/AsyncProxySocketLayer.h

@@ -9,11 +9,8 @@ This class is layer class for CAsyncSocketEx. With this class you
 can connect through SOCKS4/5 and HTTP 1.1 proxies. This class works
 as semi-transparent layer between CAsyncSocketEx and the actual socket.
 This class is used in FileZilla, a powerful open-source FTP client.
-It can be found under http://sourceforge.net/projects/filezilla
-For more information about SOCKS4/5 goto
-http://www.socks.nec.com/socksprot.html
-For more information about HTTP 1.1 goto http://www.rfc-editor.org
-and search for RFC2616
+It can be found under https://sourceforge.net/projects/filezilla/
+For more information about HTTP 1.1 goto https://tools.ietf.org/html/rfc2616
 
 How to use?
 -----------

+ 1 - 1
source/filezilla/AsyncSslSocketLayer.h

@@ -67,7 +67,7 @@ If you want to use this class in a commercial application, a short message
 to [email protected] would be appreciated but is not required.
 
 This product includes software developed by the OpenSSL Project
-for use in the OpenSSL Toolkit. (http://www.openssl.org/)
+for use in the OpenSSL Toolkit. (https://www.openssl.org/)
 */
 //---------------------------------------------------------------------------
 #ifndef AsyncSslSocketLayerH

+ 1 - 1
source/filezilla/FtpControlSocket.cpp

@@ -790,7 +790,7 @@ void CFtpControlSocket::LogOnToServer(BOOL bSkipReply /*=FALSE*/)
       // Handle servers that disobey RFC 2640 that have UTF8 in the FEAT
       // response but do not use UTF8 unless OPTS UTF8 ON gets send.
       // However these servers obey a conflicting ietf draft:
-      // http://www.ietf.org/proceedings/02nov/I-D/draft-ietf-ftpext-utf-8-option-00.txt
+      // https://tools.ietf.org/html/draft-ietf-ftpext-utf-8-option-00
       // servers are, amongst others, G6 FTP Server and RaidenFTPd.
       if (Send(L"OPTS UTF8 ON"))
         m_Operation.nOpState = CONNECT_OPTSUTF8;

+ 3 - 3
source/filezilla/FtpListResult.cpp

@@ -10,7 +10,7 @@
 //#define LISTDEBUG
 #ifdef LISTDEBUG
   //It's the normal UNIX format (or even another nonstandard format)
-  //Some samples are from http://cr.yp.to/ftpparse/ftpparse.c
+  //Some samples are from https://cr.yp.to/ftpparse/ftpparse.c
   /* UNIX-style listing, without inum and without blocks */
 
   static char data[][110]={
@@ -1272,7 +1272,7 @@ BOOL CFtpListResult::parseAsMlsd(const char *line, const int linelen, t_director
   #ifdef _DEBUG
   USES_CONVERSION;
   #endif
-  // MLSD format as described here: http://www.ietf.org/internet-drafts/draft-ietf-ftpext-mlst-16.txt
+  // MLSD format as described here: https://tools.ietf.org/html/rfc3659
   // Parsing is done strict, abort on slightest error.
 
   // If we ever add some detection that entry is symlink,
@@ -1336,7 +1336,7 @@ BOOL CFtpListResult::parseAsMlsd(const char *line, const int linelen, t_director
       // http://www.proftpd.org/docs/modules/mod_facts.html
       // They claim it's the correct one.
       // See also
-      // http://www.rfc-editor.org/errata_search.php?rfc=3659&eid=1500
+      // https://www.rfc-editor.org/errata_search.php?rfc=3659&eid=1500
       else if (!value.Left(15).CompareNoCase(L"OS.unix=symlink"))
       {
         direntry.dir = TRUE;

+ 1 - 1
source/filezilla/TransferSocket.cpp

@@ -354,7 +354,7 @@ void CTransferSocket::ConfigureSocket()
 
   // Following post claims that TCP_NODELAY
   // has to be set before connect()
-  // http://stackoverflow.com/questions/22583941/what-is-the-workaround-for-tcp-delayed-acknowledgment/25871250#25871250
+  // http://stackoverflow.com/q/22583941/850848#25871250
 
   int nodelay = GetOptionVal(OPTION_MPEXT_NODELAY);
   if (nodelay != 0)