Skip to content

Commit

Permalink
http -> https
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsaiviking committed Apr 15, 2022
1 parent 2fd8363 commit 90a1fbf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@
causing some installation failures. Fixes [#994](http://issues.nmap.org/994).

* Silent installs will not downgrade the Npcap version unless the new
`/downgrade=yes` option is given. Any version of [Npcap OEM](http://npcap.com/oem/)
`/downgrade=yes` option is given. Any version of [Npcap OEM](https://npcap.com/oem/)
will be considered a "newer version" than any non-OEM version.

## Npcap 0.94 [2017-08-29]
Expand Down
4 changes: 2 additions & 2 deletions docs/npcap-devguide.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<para>
To build software that uses Npcap, use the latest version of the Npcap Software Development Kit (SDK).
The latest SDK can be downloaded on <ulink role="hidepdf" url="http://npcap.com/#download">Npcap.org</ulink>.
The latest SDK can be downloaded on <ulink role="hidepdf" url="https://npcap.com/#download">Npcap.org</ulink>.
Updates to the SDK are much less frequent than updates to the Npcap binaries.
</para>
</sect2>
Expand Down Expand Up @@ -411,7 +411,7 @@ printf("%s", pcap_version);
<title>WlanHelper Man</title>
<screen>
C:\> <userinput>WlanHelper.exe</userinput>
WlanHelper for Npcap 0.91 ( http://npcap.com )
WlanHelper for Npcap 0.91 ( https://npcap.com )
Usage: WlanHelper [Commands]
or: WlanHelper {Interface Name or GUID} [Options]

Expand Down
2 changes: 1 addition & 1 deletion docs/npcap-guide.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
version are encouraged to upgrade regularly for security and stability
fixes. Software distributors may have separate requirements for supported
Npcap versions. Please refer to
<ulink url="http://npcap.com/#license">the Npcap License</ulink> for
<ulink url="https://npcap.com/#license">the Npcap License</ulink> for
terms of use and redistribution.</para>

<para>
Expand Down
2 changes: 1 addition & 1 deletion installer/DiagReport.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function get_props_safe($item)
}

write_report ("*************************************************")
write_report "DiagReport for Npcap ( http://npcap.com )"
write_report "DiagReport for Npcap ( https://npcap.com )"
write_report ("*************************************************")
"Script Architecture:`t`t" + (get_script_bit)
"Script Path:`t`t`t" + ($MyInvocation.MyCommand.Definition)
Expand Down
4 changes: 2 additions & 2 deletions packetWin7/NPFInstall/NPFInstall/NPFInstall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
extern BOOLEAN bWiFiService;

#define STR_COMMAND_USAGE \
_T("NPFInstall for Npcap ") _T(WINPCAP_VER_STRING) _T(" ( http://npcap.com )\n") \
_T("NPFInstall for Npcap ") _T(WINPCAP_VER_STRING) _T(" ( https://npcap.com )\n") \
_T("Usage: NPFInstall [Options]\n") \
_T("\n") \
_T("OPTIONS:\n") \
Expand Down Expand Up @@ -125,7 +125,7 @@ int _tmain(int argc, _TCHAR* argv[])
BOOL bNoWindow = FALSE;
int nStatus = 0;

SetConsoleTitle(_T("NPFInstall for Npcap ") _T(WINPCAP_VER_STRING) _T(" (http://npcap.com)"));
SetConsoleTitle(_T("NPFInstall for Npcap ") _T(WINPCAP_VER_STRING) _T(" (https://npcap.com)"));
vector<tstring> strArgs;
tstring strTmp;
for (int i = 0; i < argc; i++)
Expand Down
4 changes: 2 additions & 2 deletions packetWin7/WlanHelper/WlanHelper/WlanHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ BOOL SetWlanOperationMode(tstring strGUID, tstring strMode)
}

#define STR_COMMAND_USAGE \
_T("WlanHelper for Npcap ") _T(WINPCAP_VER_STRING) _T(" ( http://npcap.com )\n") \
_T("WlanHelper for Npcap ") _T(WINPCAP_VER_STRING) _T(" ( https://npcap.com )\n") \
_T("Usage: WlanHelper [Commands]\n") \
_T(" or: WlanHelper {Interface Name or GUID} [Options]\n") \
_T("\n") \
Expand Down Expand Up @@ -574,7 +574,7 @@ _T("SEE THE MAN PAGE (https://github.com/nmap/npcap) FOR MORE OPTIONS AND EXAMPL

int _tmain(int argc, _TCHAR* argv[])
{
SetConsoleTitle(_T("WlanHelper for Npcap ") _T(WINPCAP_VER_STRING) _T(" (http://npcap.com)"));
SetConsoleTitle(_T("WlanHelper for Npcap ") _T(WINPCAP_VER_STRING) _T(" (https://npcap.com)"));
vector<tstring> strArgs;
for (int i = 0; i < argc; i++)
{
Expand Down

0 comments on commit 90a1fbf

Please sign in to comment.