Mirza Kapetanovic
Mirza Kapetanovic
Hi, I don't think I can help you much, I don't use Windows myself so I don't know how `nslookup` works. Maybe it uses a hard-coded list of lookup servers?
I don't think that's a valid DNS query. Hope you figured it out.
Now I see the issue. Maybe the domain name parsing needs to be changed. A workaround at the moment is to use an empty label array, e.g: ```csharp DnsClient client...
This seems to be a DNS update packet, [RFC2136](https://tools.ietf.org/html/rfc2136). There a some differences in the packet structure which are not supported at the moment. The parsed payload: ``` { Header={...
Hi, is it possible to trim down the pull-request to absolute necessary changes? It's hard for me to see what the actual fix is.
I'm open to a pull-request that adds type definitions.
That was my though also. But to begin with I also want to use this in one my own projects.
I'll be happy to accept the pull-request if you undo the package*.json changes and fix the indentation in the code.
I had the same though but choose to copy the `auth` behavior that was already there: https://github.com/micropython/micropython-lib/blob/80b21be6f4acadf6132b22129b90309991c93160/python-ecosys/requests/requests/__init__.py#L59 But I can change it so it writes to the socket directly and...
This commit writes headers directly to the socket: https://github.com/kapetan/micropython-lib/commit/b3f795abc32e8b3a044b9e3714c717defb347443 I think that could work. I also added a test file where I mock the `usocket` module. The test file is...