G/E
Can't decide if the following:

GEN  obj_release/mod_http2_link.opt
LINK obj_release/mod_http2.nlm
### mwldnlm Linker Error:
#   Undefined symbol: ap_create_request in
#   h2_request.o

is a typo and should be calling ap_create_request_config()

or if:

request_rec *ap_create_request(conn_rec *conn)
(protocol.c/http_protocol.h)

needs to declared as:

AP_DECLARE(request_rec) *ap_create_request(conn_rec *conn)

otherwise the ap_create_request symbol is not exported from the server for use by other modules...?

Norm

Reply via email to