SILC_FSM_CALL_CONTINUE

NAME

    SILC_FSM_CALL_CONTINUE(fsm)

DESCRIPTION

Macro used to proceed after asynchornous call. This is called in the callback of the asynchronous call to continue in the state machine.

EXAMPLE

    void some_callback(void *context) {
      SilcFSM fsm = context;
      ...
      // Continue to the next state
      SILC_FSM_CALL_CONTINUE(fsm);
    }