Stephan Henrichs

Results 16 issues of Stephan Henrichs

Having the ability to authenticate against PAM is one thing. However you should also be able to implement your own pam modules using this API. Would be nice to have...

The server installer is not able to download legacy versions of minecraft (tested with 1.4.7) because it cannot download forge. TODO: Fix that.

This implements an Ethernet Switch. It has been laying around for weeks without any work done, but is mostly working. I've just now rebased it ontop the current 1.16.5. It...

enhancement

Scenario: two ore more players are on a server and share an atlas. I propose an option where those players can see each other in real-time as a marker on...

type: enhancement

When linting rust i keep getting this an error recently. The rust code in question is: ``` rust struct SomeStruct { somevar: Vec; } ``` The code compiles and runs...

If an IO Error happens in the underlying Read, it is not possible to correctly identify what exactly happened (without hacks like parsing the error message). In particular, i have...

The documentation does not specify how vendor specific attributes are encoded/accessed. In Particular [RFC2865](https://datatracker.ietf.org/doc/html/rfc2865#section-5.26) specifies a format for encoding multiple attributes by a single vendor in a single Attribute 26....

On linux the file system is case sensitive. This makes line 11 in `ParseLua.lua` break. To fix this, change `require ('Strict')` to `require ('strict')`

Often times, it is desirable to have a full-duplex connection. This (assuming sync IO) generally requires handling reading and writing in different threads. However, due to rusts ownership model, this...

enhancement