thank u, Eric. I just saw your reply. 2017-09-07 16:54 GMT-07:00 Eric Covener <cove...@gmail.com>:
> On Thu, Sep 7, 2017 at 12:07 PM, eeadev dev <eea...@gmail.com> wrote: > > In my function I need to get the checksum using md5. > > > > I saw that there is this function ap_md5(apr_pool_t *a, const unsigned > char > > *string); > > > > but it needs apr_pool_t > > > > how can I get it? > > > > char key[] = "abc"; > > > > key_md5 = ap_md5(mem_pool, key); > > Most request processing hooks are passed the request_rec which has a > pool with request lifetime. Similar for connection-level hooks and > conn_rec. > > While parsing directives, you have pools passed on the cmd_* structure > which are either temporary or very long-lived. > > Finally, you can create & destroy a new pool if you are in some very weird > code. > > Could you elaborate on the context? > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org > For additional commands, e-mail: users-h...@httpd.apache.org > >