FreeBSD Manual Pages
HTTP_SERVLET_AUTH(3) Library Functions Manual HTTP_SERVLET_AUTH(3) NAME http_servlet_basicauth -- HTTP basic authentication servlet LIBRARY PDEL Library (libpdel, -lpdel) SYNOPSIS #include <sys/types.h> #include <stdio.h> #include <netinet/in.h> #include <openssl/ssl.h> #include <pdel/http/http_defs.h> #include <pdel/http/http_server.h> #include <pdel/http/servlet/basicauth.h> struct http_servlet * http_servlet_basicauth_create(http_servlet_basicauth_t *auth, void *arg, void (*destroy)(void *)); DESCRIPTION http_servlet_basicauth_create() creates a new servlet that implements HTTP basic authentication. The servlet should be registered with a lower order than the other servlets that it protects, so that it exe- cutes first. auth is a pointer to a function having this type: typedef const char *http_servlet_basicauth_t(void *arg, struct http_request *req, const char *username, const char *password); arg is the opaque cookie supplied to http_servlet_basicauth_create(). req is the HTTP request object and username and password are the cre- dentials supplied with the request, or the empty string if none were supplied. auth() should return NULL to allow access. Otherwise, it should return the authorization realm string to deny access. This string is not freed by the calling function. Warning: this is reversed from usual semantics; returning NULL indicates success and allows access. When the servlet is destroyed, if destroy is not NULL, it will be in- voked with arg as its parameter. RETURN VALUES On failure, http_servlet_basicauth_create() returns NULL and sets errno to an appropriate value. SEE ALSO http_request(3), http_response(3), http_server(3), http_servlet(3), http_servlet_cookieauth(3), libpdel(3) J. Franks, P. Hallam-Baker, J. Hostetler, S. Lawrence, P. Leach, A. Luotonen, and L. Stewart, HTTP Authentication: Basic and Digest Access Authentication, RFC 2617. HISTORY The PDEL library was developed at Packet Design, LLC. http://www.packetdesign.com/ AUTHORS Archie Cobbs <archie@freebsd.org> FreeBSD ports 15.0 April 22, 2002 HTTP_SERVLET_AUTH(3)
NAME | LIBRARY | SYNOPSIS | DESCRIPTION | RETURN VALUES | SEE ALSO | HISTORY | AUTHORS
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=http_servlet_basicauth&sektion=3&manpath=FreeBSD+Ports+15.0>
