1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef UA_ACCESSCONTROL_DEFAULT_H_
- #define UA_ACCESSCONTROL_DEFAULT_H_
- #include "ua_server.h"
- #include "ua_plugin_access_control.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct {
- UA_String username;
- UA_String password;
- } UA_UsernamePasswordLogin;
- UA_EXPORT UA_AccessControl
- UA_AccessControl_default(UA_Boolean allowAnonymous,
- size_t usernamePasswordLoginSize,
- const UA_UsernamePasswordLogin *usernamePasswordLogin);
- #ifdef __cplusplus
- }
- #endif
- #endif
|