12345678910111213141516171819202122232425262728293031 |
- #ifndef UA_ACCESSCONTROL_DEFAULT_H_
- #define UA_ACCESSCONTROL_DEFAULT_H_
- #include "ua_server.h"
- #include "ua_plugin_access_control.h"
- _UA_BEGIN_DECLS
- typedef struct {
- UA_String username;
- UA_String password;
- } UA_UsernamePasswordLogin;
- UA_EXPORT UA_StatusCode
- UA_AccessControl_default(UA_AccessControl *ac, UA_Boolean allowAnonymous,
- size_t usernamePasswordLoginSize,
- const UA_UsernamePasswordLogin *usernamePasswordLogin);
- _UA_END_DECLS
- #endif
|