Skip to content

Commit f820973

Browse files
authored
change links to https if possible (arduino-libraries#66)
1 parent 7c32bbe commit f820973

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Alberto Panu https://github.com/bigjohnson
22
Alasdair Allan https://github.com/aallan
33
Alice Pintus https://github.com/00alis
44
Adrian McEwen https://github.com/amcewen
5-
Arduino LLC http://arduino.cc/
5+
Arduino LLC https://arduino.cc/
66
Arnie97 https://github.com/Arnie97
77
Arturo Guadalupi https://github.com/agdl
88
Bjoern Hartmann https://people.eecs.berkeley.edu/~bjoern/

examples/TelnetClient/TelnetClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Processing's ChatServer example (part of the Network library) works well,
88
running on port 10002. It can be found as part of the examples
99
in the Processing application, available at
10-
http://processing.org/
10+
https://processing.org/
1111
1212
Circuit:
1313
* Ethernet shield attached to pins 10, 11, 12, 13

examples/UdpNtpClient/UdpNtpClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Get the time from a Network Time Protocol (NTP) time server
66
Demonstrates use of UDP sendPacket and ReceivePacket
77
For more on NTP time servers and the messages needed to communicate with them,
8-
see http://en.wikipedia.org/wiki/Network_Time_Protocol
8+
see https://en.wikipedia.org/wiki/Network_Time_Protocol
99
1010
created 4 Sep 2010
1111
by Michael Margolis

examples/WebClientRepeating/WebClientRepeating.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
modified 21 Jan 2014
1818
by Federico Vanzati
1919
20-
http://www.arduino.cc/en/Tutorial/WebClientRepeating
20+
https://www.arduino.cc/en/Tutorial/WebClientRepeating
2121
This code is in the public domain.
2222
2323
*/

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ maintainer=Paul Stoffregen <[email protected]>, Arduino <[email protected]>
55
sentence=Enables network connection (local and Internet) using the Arduino Ethernet Board or Shield.
66
paragraph=With this library you can use the Arduino Ethernet (shield or board) to connect to Internet. The library provides both Client and server functionalities. The library permits you to connect to a local network also with DHCP and to resolve DNS.
77
category=Communication
8-
url=http://www.arduino.cc/en/Reference/Ethernet
8+
url=https://www.arduino.cc/en/Reference/Ethernet
99
architectures=*
1010
includes=Ethernet.h

src/EthernetClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ uint16_t EthernetClient::localPort()
189189
}
190190

191191
// https://github.com/per1234/EthernetMod
192-
// returns the remote IP address: http://forum.arduino.cc/index.php?topic=82416.0
192+
// returns the remote IP address: https://forum.arduino.cc/index.php?topic=82416.0
193193
IPAddress EthernetClient::remoteIP()
194194
{
195195
if (sockindex >= MAX_SOCK_NUM) return IPAddress((uint32_t)0);

0 commit comments

Comments
 (0)