cfilters: kill connection filter events attach+detach

Make transfer attach/detach to/from connections chepaer.

- the "attach" event was no longer implemented by any filter
- the "detach" did the same as the "done" event for the filters
  who still implemented it. It should be superfluous as the "done"
  must always happen.

Closes #16067
This commit is contained in:
Stefan Eissing 2025-01-21 14:47:29 +01:00 committed by Daniel Stenberg
parent f5f8f2c892
commit cd9107e012
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
7 changed files with 0 additions and 46 deletions

View file

@ -2636,9 +2636,6 @@ static CURLcode cf_h2_cntrl(struct Curl_cfilter *cf,
case CF_CTRL_FLUSH:
result = cf_h2_flush(cf, data);
break;
case CF_CTRL_DATA_DETACH:
http2_data_done(cf, data);
break;
case CF_CTRL_DATA_DONE:
http2_data_done(cf, data);
break;