[REACTOS] Follow-up of #7632; Revert 3rd-party changes

CORE-19963
This commit is contained in:
Katayama Hirofumi MZ 2025-01-28 20:17:30 +09:00
parent fe11f7a2e5
commit 0e327e9a70
15 changed files with 17 additions and 17 deletions

View file

@ -24,7 +24,7 @@ spinlock_t nls_lock;
/* /*
* Sample implementation from Unicode home page. * Sample implementation from Unicode home page.
* http://www.stonehand.com/unicode/standard/fss-utf.html (DEAD_LINK) * http://www.stonehand.com/unicode/standard/fss-utf.html
*/ */
struct utf8_table { struct utf8_table {
int cmask; int cmask;

View file

@ -4,7 +4,7 @@
* Charset cp932 translation tables. * Charset cp932 translation tables.
* This translation table was generated automatically, the * This translation table was generated automatically, the
* original table can be download from the Microsoft website. * original table can be download from the Microsoft website.
* (https://learn.microsoft.com/en-us/typography/) * (http://www.microsoft.com/typography/unicode/unicodecp.htm)
*/ */
#include <linux/module.h> #include <linux/module.h>

View file

@ -4,7 +4,7 @@
* Charset cp936 translation tables. * Charset cp936 translation tables.
* This translation table was generated automatically, the * This translation table was generated automatically, the
* original table can be download from the Microsoft website. * original table can be download from the Microsoft website.
* (https://learn.microsoft.com/en-us/typography/) * (http://www.microsoft.com/typography/unicode/unicodecp.htm)
*/ */
#include <linux/module.h> #include <linux/module.h>

View file

@ -4,7 +4,7 @@
* Charset cp949 translation tables. * Charset cp949 translation tables.
* This translation table was generated automatically, the * This translation table was generated automatically, the
* original table can be download from the Microsoft website. * original table can be download from the Microsoft website.
* (https://learn.microsoft.com/en-us/typography/) * (http://www.microsoft.com/typography/unicode/unicodecp.htm)
*/ */
#include <linux/module.h> #include <linux/module.h>

View file

@ -4,7 +4,7 @@
* Charset cp950 translation tables. * Charset cp950 translation tables.
* This translation table was generated automatically, the * This translation table was generated automatically, the
* original table can be download from the Microsoft website. * original table can be download from the Microsoft website.
* (https://learn.microsoft.com/en-us/typography/) * (http://www.microsoft.com/typography/unicode/unicodecp.htm)
*/ */
#include <linux/module.h> #include <linux/module.h>

View file

@ -3,7 +3,7 @@
* *
* Added `OSF/JVC Recommended Code Set Conversion Specification * Added `OSF/JVC Recommended Code Set Conversion Specification
* between Japanese EUC and Shift-JIS' support: <hirofumi@mail.parknet.co.jp> * between Japanese EUC and Shift-JIS' support: <hirofumi@mail.parknet.co.jp>
* (https://web.archive.org/web/20060514215542/http://www.opengroup.or.jp/jvc/cde/sjis-euc-e.html) * (http://www.opengroup.or.jp/jvc/cde/sjis-euc-e.html)
*/ */
#include <linux/module.h> #include <linux/module.h>

View file

@ -5639,8 +5639,8 @@ NTSTATUS check_nfs41_setattr_args(
goto out; goto out;
} }
/* https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fsa/3820daf2-e512-4730-8cce-2d0435ae6ad2 /* http://msdn.microsoft.com/en-us/library/ff469355(v=PROT.10).aspx
* https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fsa/5555bcb6-bc29-4f8a-900c-e469b792faab * http://msdn.microsoft.com/en-us/library/ff469424(v=PROT.10).aspx
* If Open.GrantedAccess does not contain FILE_WRITE_DATA, the operation * If Open.GrantedAccess does not contain FILE_WRITE_DATA, the operation
* MUST be failed with STATUS_ACCESS_DENIED. * MUST be failed with STATUS_ACCESS_DENIED.
*/ */

View file

@ -74,7 +74,7 @@
* - Developed on Windows with Visual Studio 2010. * - Developed on Windows with Visual Studio 2010.
* - Can be compiled and used on all platforms with http://www.monodevelop.com/. * - Can be compiled and used on all platforms with http://www.monodevelop.com/.
* - Based on a heavily modified version of of SharpSnmpLib (a4bd05c6afb4) * - Based on a heavily modified version of of SharpSnmpLib (a4bd05c6afb4)
* (https://sharpsnmplib.codeplex.com/SourceControl/network/forks/Nemo157/MIBParserUpdate (DEAD_LINK)). * (https://sharpsnmplib.codeplex.com/SourceControl/network/forks/Nemo157/MIBParserUpdate).
* This has been the last known revision of that code before being converted to * This has been the last known revision of that code before being converted to
* closed source. The new code on github has completely changed, so we can not * closed source. The new code on github has completely changed, so we can not
* just update :-( * just update :-(

View file

@ -967,7 +967,7 @@ snmp_parse_inbound_frame(struct snmp_request *request)
* 1) securityParameters was correctly serialized if we reach here. * 1) securityParameters was correctly serialized if we reach here.
* 2) securityParameters are already cached. * 2) securityParameters are already cached.
* 3) if msgAuthoritativeEngineID is unknown, zero-length or too long: * 3) if msgAuthoritativeEngineID is unknown, zero-length or too long:
b) https://datatracker.ietf.org/doc/html/rfc3414#section-7 b) https://tools.ietf.org/html/rfc3414#section-7
*/ */
{ {
const char *eid; const char *eid;

View file

@ -119,7 +119,7 @@
#endif #endif
#ifndef TCP_LOCAL_PORT_RANGE_START #ifndef TCP_LOCAL_PORT_RANGE_START
/* From http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml : /* From http://www.iana.org/assignments/port-numbers:
"The Dynamic and/or Private Ports are those from 49152 through 65535" */ "The Dynamic and/or Private Ports are those from 49152 through 65535" */
#define TCP_LOCAL_PORT_RANGE_START 0xc000 #define TCP_LOCAL_PORT_RANGE_START 0xc000
#define TCP_LOCAL_PORT_RANGE_END 0xffff #define TCP_LOCAL_PORT_RANGE_END 0xffff

View file

@ -66,7 +66,7 @@
#include <string.h> #include <string.h>
#ifndef UDP_LOCAL_PORT_RANGE_START #ifndef UDP_LOCAL_PORT_RANGE_START
/* From https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml : /* From http://www.iana.org/assignments/port-numbers:
"The Dynamic and/or Private Ports are those from 49152 through 65535" */ "The Dynamic and/or Private Ports are those from 49152 through 65535" */
#define UDP_LOCAL_PORT_RANGE_START 0xc000 #define UDP_LOCAL_PORT_RANGE_START 0xc000
#define UDP_LOCAL_PORT_RANGE_END 0xffff #define UDP_LOCAL_PORT_RANGE_END 0xffff

View file

@ -181,7 +181,7 @@
#define SNMP_LWIP_ENTERPRISE_OID 26381 #define SNMP_LWIP_ENTERPRISE_OID 26381
/** /**
* IANA assigned enterprise ID for lwIP is 26381 * IANA assigned enterprise ID for lwIP is 26381
* @see https://www.iana.org/assignments/enterprise-numbers/ * @see http://www.iana.org/assignments/enterprise-numbers
* *
* @note this enterprise ID is assigned to the lwIP project, * @note this enterprise ID is assigned to the lwIP project,
* all object identifiers living under this ID are assigned * all object identifiers living under this ID are assigned
@ -190,7 +190,7 @@
* *
* If you need to create your own private MIB you'll need * If you need to create your own private MIB you'll need
* to apply for your own enterprise ID with IANA: * to apply for your own enterprise ID with IANA:
* https://www.iana.org/protocols * http://www.iana.org/numbers.html
*/ */
#define SNMP_DEVICE_ENTERPRISE_OID {1, 3, 6, 1, 4, 1, SNMP_LWIP_ENTERPRISE_OID} #define SNMP_DEVICE_ENTERPRISE_OID {1, 3, 6, 1, 4, 1, SNMP_LWIP_ENTERPRISE_OID}
/** /**

View file

@ -35,7 +35,7 @@
/* /*
* The ARCFOUR algorithm was publicly disclosed on 94/09. * The ARCFOUR algorithm was publicly disclosed on 94/09.
* *
* https://groups.google.com/g/sci.crypt/c/TPS_Ix7aTJ4/m/oPwa0skAoxAJ?pli=1 * http://groups.google.com/group/sci.crypt/msg/10a300c9d21afca0
*/ */
#include "netif/ppp/ppp_opts.h" #include "netif/ppp/ppp_opts.h"

View file

@ -36,7 +36,7 @@
* DES, on which TDES is based, was originally designed by Horst Feistel * DES, on which TDES is based, was originally designed by Horst Feistel
* at IBM in 1974, and was adopted as a standard by NIST (formerly NBS). * at IBM in 1974, and was adopted as a standard by NIST (formerly NBS).
* *
* https://csrc.nist.gov/files/pubs/fips/46-3/final/docs/fips46-3.pdf * http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf
*/ */
#include "netif/ppp/ppp_opts.h" #include "netif/ppp/ppp_opts.h"

View file

@ -35,7 +35,7 @@
/* /*
* The SHA-1 standard was published by NIST in 1993. * The SHA-1 standard was published by NIST in 1993.
* *
* http://www.itl.nist.gov/fipspubs/fip180-1.htm (DEAD_LINK) * http://www.itl.nist.gov/fipspubs/fip180-1.htm
*/ */
#include "netif/ppp/ppp_opts.h" #include "netif/ppp/ppp_opts.h"