diff --git a/wifimgr.py b/wifimgr.py index 93740c7..59205f2 100644 --- a/wifimgr.py +++ b/wifimgr.py @@ -3,6 +3,7 @@ import ure import time + ap_ssid = "WifiManager" ap_password = "tayfunulu" ap_authmode = 3 # WPA2 @@ -99,22 +100,31 @@ def do_connect(ssid, password): return connected -def send_response(client, payload, status_code=200): +def send_header(client, status_code=200, content_length=None ): client.sendall("HTTP/1.0 {} OK\r\n".format(status_code)) client.sendall("Content-Type: text/html\r\n") - client.sendall("Content-Length: {}\r\n".format(len(payload))) + if content_length is not None: + client.sendall("Content-Length: {}\r\n".format(content_length)) + client.sendall("\r\n") - if len(payload) > 0: +def send_response(client, payload, status_code=200): + content_length = len(payload) + + send_header(client, status_code, content_length) + + if content_length > 0: client.sendall(payload) + client.close() def handle_root(client): wlan_sta.active(True) ssids = sorted(ssid.decode('utf-8') for ssid, *_ in wlan_sta.scan()) - response = [] - response.append("""\ + send_header(client) + + client.sendall("""\