source: rtems/cpukit/httpd/websda.h @ 4a2fee47

Last change on this file since 4a2fee47 was 2e7f00fc, checked in by Joel Sherrill <joel.sherrill@…>, on 04/11/03 at 16:34:49

2003-04-11 Joel Sherrill <joel@…>

  • rtems_webserver/cgi.c, rtems_webserver/sockGen.c, rtems_webserver/umui.c, rtems_webserver/websSSL.c, rtems_webserver/websSSL.h, rtems_webserver/websda.c, rtems_webserver/websda.h: New files. Not included in previous commit.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 *      websda.h -- GoAhead Digest Access Authentication public header
3 *
4 * Copyright (c) GoAhead Software Inc., 1992-2000. All Rights Reserved.
5 *
6 *      See the file "license.txt" for information on usage and redistribution
7 *
8 * $Id$
9 */
10
11#ifndef _h_WEBSDA
12#define _h_WEBSDA 1
13
14/******************************** Description *********************************/
15
16/*
17 *      GoAhead Digest Access Authentication header. This defines the Digest
18 *      access authentication public APIs.  Include this header for files that
19 *      use DAA functions
20 */
21
22/********************************* Includes ***********************************/
23
24#ifndef UEMF
25        #include        "basic/basic.h"
26        #include        "emf/emf.h"
27#else
28        #include        "uemf.h"
29#endif
30
31#include                "webs.h"
32
33/****************************** Definitions ***********************************/
34
35extern char_t   *websCalcNonce(webs_t wp);
36extern char_t   *websCalcOpaque(webs_t wp);
37extern char_t   *websCalcDigest(webs_t wp);
38
39#endif /* _h_WEBSDA */
40
41/******************************************************************************/
Note: See TracBrowser for help on using the repository browser.