ganeshmurthy commented on pull request #1182:
URL: https://github.com/apache/qpid-dispatch/pull/1182#issuecomment-831945886
You could also call the qd_http_server_free() function directly from
qd_dispatch_free(qd_dispatch_t *qd) by adding this function in server_private.h
qd_http_server_t *qd_server_http(qd_server_t *server);
And implement that in server.c
qd_http_server_t *qd_server_http(qd_server_t *server)
{
return server->http;
}
Call it directly from like this qd_dispatch_free like this -
qd_http_server_free(qd_server_http(qd->server));
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]