| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Remove subdir c
- Do not compile c code as a separate shared library
- Move all definitions/declarations into the preamble as they shouldn't be shared anyways. So no headers are needed
- Define the callback as static, needed so we don't get a duplicate declaration
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Info: Something failed but it's not really an error. These errors
mostly only get logged
- Warning: Something failed to complete the operation, but it's not
critical for the functioning. E.g. state changes (maybe a button gets
pressed twice quickly, NO-OPS, e.g. disconnecting but no active server)
- Error: Something failed that was needed to complete for the
functioning of the app (e.g. a server is down and cannot be connected to)
|
|
|
|
|
|
This is problematic as we do not want to remove already fully added servers!
|
|
|
|
|
|
|
|
|
|
This removes the FSM from being imported and thus used in other
internal packages such as `oauth` or `server`. The benefit is that it
becomes much easier now to reason about the FSM as it's only used in
the public package. Additionally, we do not have to re-initialize the
server and the oauth structure with the FSM pointer.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|