diff options
author | Dimitri Staessens <[email protected]> | 2023-08-28 10:22:43 +0200 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2023-08-30 10:33:19 +0200 |
commit | d21c4d5b0e7f42fe09784f11fa5776ff305e4fdf (patch) | |
tree | 2c31bb7d066101f7a29bec1f78f54faa622b333b /src/ipcpd/unicast/main.c | |
parent | 24bb41dd02b9a2a03ebdeb35d81da9061ffc4604 (diff) | |
download | ouroboros-d21c4d5b0e7f42fe09784f11fa5776ff305e4fdf.tar.gz ouroboros-d21c4d5b0e7f42fe09784f11fa5776ff305e4fdf.zip |
ipcpd: Set IPCP states in common sources
The state of the IPCP was set and checked in the main files, but it's
more convenient to do it in the common source.
Signed-off-by: Dimitri Staessens <[email protected]>
Signed-off-by: Sander Vrijders <[email protected]>
Diffstat (limited to 'src/ipcpd/unicast/main.c')
-rw-r--r-- | src/ipcpd/unicast/main.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/ipcpd/unicast/main.c b/src/ipcpd/unicast/main.c index 994b1fd3..e1c3d5d0 100644 --- a/src/ipcpd/unicast/main.c +++ b/src/ipcpd/unicast/main.c @@ -129,10 +129,6 @@ static void finalize_components(void) static int start_components(void) { - assert(ipcp_get_state() == IPCP_INIT); - - ipcp_set_state(IPCP_OPERATIONAL); - if (dt_start() < 0) { log_err("Failed to start data transfer."); goto fail_dt_start; @@ -168,9 +164,6 @@ static int start_components(void) static void stop_components(void) { - assert(ipcp_get_state() == IPCP_OPERATIONAL || - ipcp_get_state() == IPCP_SHUTDOWN); - connmgr_stop(); enroll_stop(); |