Mickael FRANC

Results 5 issues of Mickael FRANC

Add Dockerfile for both `-info` and `-monitor` mode. Related to #23

enhancement
quality
ci

See issue: #13 And see test: https://github.com/pilebones/go-udev/blob/master/netlink/uevent_test.go#L67-L70 From tests, the input byte data is hard-coded for little-endian architectures. We should also manage big-endian architectures.

https://github.com/pilebones/go-udev/blob/master/netlink/conn.go#L126 Change historical interface ```go func (c *UEventConn) Monitor(queue chan UEvent, errs chan error, matcher Matcher) chan struct{} { ``` By something like that: ```go func (c *UEventConn) Monitor(ctx context.Context,...

Use correctly the go scheduler when reading the netlink file descriptor. By this way, the scheduler go could manage the select block (from monitor mode) correctly because when reading using...

enhancement