Ilya Kulakov
Ilya Kulakov
That would allow to strip GCC requirement and simplify distribution.
C-API returns and accepts null-terminated strings. Java doesn't care about them. Current implementation requires extra work from the user to remove and add null termination. I think JNI should be...
With the most recent version, we get the following error (on Android): ``` E/AndroidRuntime( 1628): java.lang.ExceptionInInitializerError E/AndroidRuntime( 1628): at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65) E/AndroidRuntime( 1628): at android.os.Handler.dispatchMessage(Handler.java:99) E/AndroidRuntime( 1628): at android.os.Looper.loop(Looper.java:137) E/AndroidRuntime( 1628):...
This is an odd crash that happens sporadically: 0 libsystem_kernel.dylib 0x00007fff8debcc82 __kill + 10 1 libsystem_platform.dylib 0x00007fff88730f1a _sigtramp + 26 2 ??? 000000000000000000 0 + 0 3 libsystem_c.dylib 0x00007fff8b090b53 abort...
Libraries that implement a client to an HTTP backend often provide multiple implementations such as for `tornado`, `aiohttp` or `requests`. Each implementation comes with its own dependencies. User usually needs...
It appears that mdns is a bit inaccurate in documentation. In example: ``` class ServiceInfo(object): """Service information""" def __init__(self, type, name, address=None, port=None, weight=0, priority=0, properties=None, server=None, records=None, ttl=_DNS_TTL, signer=None):...
https://github.com/svinota/mdns/blob/master/mdns/zeroconf.py#L932-L956 I cannot find RFC that requires that parsing and defines packing algorithm used by this implementation. @svinota Do you know it?
RFC 6763
I've started to write service from scratch based on most recent version of the RFC 6763. You could follow the work here: https://github.com/GreatFruitOmsk/mdns/tree/new_service The main goal is to pre-validate and...
As I understand, this library is pure python implementation of dns-sd and mdns. Is it indented to be compatible with Bonjour or Avahi? Can it coexist with an installation of...
The code of this lib seems a bit outdated and requires some refactoring and documenting. Which version of python is considered minimum for contribution? Python 2.6 sounds like a reasonable...