Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
8fcfaf6f
Commit
8fcfaf6f
authored
9 years ago
by
Paul Sokolovsky
Browse files
Options
Downloads
Patches
Plain Diff
examples/http_server_ssl.py: HTTPS server example.
parent
978a429a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/network/http_server_ssl.py
+59
-0
59 additions, 0 deletions
examples/network/http_server_ssl.py
with
59 additions
and
0 deletions
examples/network/http_server_ssl.py
0 → 100644
+
59
−
0
View file @
8fcfaf6f
try
:
import
usocket
as
socket
except
:
import
socket
import
ussl
as
ssl
CONTENT
=
b
"""
\
HTTP/1.0 200 OK
Hello #%d from MicroPython!
"""
def
main
(
use_stream
=
True
):
s
=
socket
.
socket
()
# Binding to all interfaces - server will be accessible to other hosts!
ai
=
socket
.
getaddrinfo
(
"
0.0.0.0
"
,
8443
)
print
(
"
Bind address info:
"
,
ai
)
addr
=
ai
[
0
][
4
]
s
.
setsockopt
(
socket
.
SOL_SOCKET
,
socket
.
SO_REUSEADDR
,
1
)
s
.
bind
(
addr
)
s
.
listen
(
5
)
print
(
"
Listening, connect your browser to https://<this_host>:8443/
"
)
counter
=
0
while
True
:
res
=
s
.
accept
()
client_s
=
res
[
0
]
client_addr
=
res
[
1
]
print
(
"
Client address:
"
,
client_addr
)
print
(
"
Client socket:
"
,
client_s
)
client_s
=
ssl
.
wrap_socket
(
client_s
,
server_side
=
True
)
print
(
client_s
)
print
(
"
Request:
"
)
if
use_stream
:
# Both CPython and MicroPython SSLSocket objects support read() and
# write() methods.
# Browsers are prone to terminate SSL connection abruptly if they
# see unknown certificate, etc. We must continue in such case -
# next request they issue will likely be more well-behaving and
# will succeed.
try
:
req
=
client_s
.
read
(
4096
)
print
(
req
)
if
req
:
client_s
.
write
(
CONTENT
%
counter
)
except
Exception
as
e
:
print
(
"
Exception serving request:
"
,
e
)
else
:
print
(
client_s
.
recv
(
4096
))
client_s
.
send
(
CONTENT
%
counter
)
client_s
.
close
()
counter
+=
1
print
()
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment