[api] Inline fast path of try_to_clear_buffer (#14630)

This commit is contained in:
J. Nick Koston
2026-03-08 14:01:01 -10:00
committed by GitHub
parent 76c567a71c
commit 771404668d
2 changed files with 10 additions and 6 deletions
+1 -5
View File
@@ -1945,11 +1945,7 @@ void APIConnection::on_noise_encryption_set_key_request(const NoiseEncryptionSet
#ifdef USE_API_HOMEASSISTANT_STATES
void APIConnection::on_subscribe_home_assistant_states_request() { state_subs_at_ = 0; }
#endif
bool APIConnection::try_to_clear_buffer(bool log_out_of_space) {
if (this->flags_.remove)
return false;
if (this->helper_->can_write_without_blocking())
return true;
bool APIConnection::try_to_clear_buffer_slow_(bool log_out_of_space) {
delay(0);
APIError err = this->helper_->loop();
if (err != APIError::OK) {