mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
678 B
30 lines
678 B
/* security/basic/pwcache.h */
|
|
/* Jeff Hostetler, Spyglass, Inc., 1994. */
|
|
/* Copyright (C) 1994, Spyglass, Inc. All rights reserved. */
|
|
|
|
#ifndef PWCACHE_H_
|
|
#define PWCACHE_H_
|
|
|
|
extern unsigned char gbEnableCache;
|
|
|
|
/*****************************************************************/
|
|
|
|
typedef struct _PWCI PWCI; /* cache item */
|
|
|
|
struct _PWCI
|
|
{
|
|
PWCI * next; /* forward link */
|
|
unsigned char * szHost; /* key 1 */
|
|
unsigned char * szUriTemplate; /* key 2 */
|
|
unsigned char * szUserPass; /* value */
|
|
unsigned char * szRealm; /* alternate key 2 */
|
|
};
|
|
|
|
typedef struct _PWC PWC; /* a cache */
|
|
|
|
struct _PWC
|
|
{
|
|
PWCI * first;
|
|
};
|
|
|
|
#endif /* PWCACHE_H_ */
|