Zot6Handler - multiple questions
Zot6Handler - multiple questions
- The Zot6Handler implements the IHandler interface. But it seems to be the only class implementing that interface. This suggests to me that the interface is probably superfluous, or the wrong abstraction. What was the plan behind this interface?
- The dynamic function
Rekey
just forwards the call to the static function reply_rekey_request
from the same class, which does not exist. There is a static function called rekey_request
and I assume this is what was meant to be called instead. However, given that this function has never been called (successfully), is it needed at all? (The only place it's referenced is in Zotlabs\Zot6\Receiver
at line 195. - All the methods that is implemented to satisfy the IHandler interface are dynamic functions that just forwards the call to a single corresponding static function on the same class. The question is: Why?