examples/network: Rename SSL examples to start with https.

It's better for discoverability to have these examples named `https_xxx.py`
rather than `http_xxx_ssl.py`.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2024-04-27 13:39:57 +10:00
parent eb517a0a12
commit bd610ff016
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import socket
import ssl
def main(use_stream=True):
s = socket.socket()
ai = socket.getaddrinfo("google.com", 443)
print("Address infos:", ai)
addr = ai[0][-1]
print("Connect address:", addr)
s.connect(addr)
s = ssl.wrap_socket(s)
print(s)
if use_stream:
# Both CPython and MicroPython SSLSocket objects support read() and
# write() methods.
s.write(b"GET / HTTP/1.0\r\n\r\n")
print(s.read(4096))
else:
# MicroPython SSLSocket objects implement only stream interface, not
# socket interface
s.send(b"GET / HTTP/1.0\r\n\r\n")
print(s.recv(4096))
s.close()
main()