7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
|
if (ssh->crcda_ctx) {
crcda_free_context(ssh->crcda_ctx);
ssh->crcda_ctx = NULL;
}
if (ssh->s)
ssh_do_close(ssh);
expire_timer_context(ssh);
sfree(ssh);
if (ssh->pinger)
pinger_free(ssh->pinger);
random_unref();
}
/*
* Reconfigure the SSH backend.
*
|
<
>
|
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
|
if (ssh->crcda_ctx) {
crcda_free_context(ssh->crcda_ctx);
ssh->crcda_ctx = NULL;
}
if (ssh->s)
ssh_do_close(ssh);
expire_timer_context(ssh);
if (ssh->pinger)
pinger_free(ssh->pinger);
sfree(ssh);
random_unref();
}
/*
* Reconfigure the SSH backend.
*
|