@pumper could you help me understand how to bind to 127.0.0.0/8
.
At https://oswalt.dev/2022/02/non-local-address-binds-in-linux/ described use for bind to any IP
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(("0.0.0.0", 0))
But not for network addr with mask.
Hope you can suggest.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.