I would like to add a convenience API to fetch the file descriptor from a VConn object. I came across the need for this when writing a plugin working with a SSL VConn. For a variety of reasons, I didn't want the plugin to link with a ssl library. With this API, I could avoid pulling in the ssl library.
PR with the proposed implementation https://github.com/apache/trafficserver/pull/10324 Proposed signature int TSVConnFdGet(TSVConn vconnp) Please let me know if you have any comments or concerns. Susan