1/*****************************************************************************
2 * wps service
3 *****************************************************************************
4*/
5
6#if !defined(__wps_svc_h__)
7#define __wps_svc_h__
8
9
10struct cfg_ctx;
11struct cfg_ctx_set_cfg;
12struct wps_dat;
13struct wps_svc_dat;
14
15
16extern int
17wps_sup_svc_init(struct cfg_ctx *ctx);
18
19extern int
20wps_sup_svc_deinit(struct cfg_ctx *ctx);
21
22extern int
23wps_sup_svc_cfg(struct cfg_ctx *, const struct cfg_ctx_set_cfg *);
24
25extern int
26wps_auth_svc_init(struct cfg_ctx *ctx);
27
28extern int
29wps_auth_svc_deinit(struct cfg_ctx *ctx);
30
31extern int
32wps_auth_svc_cfg(struct cfg_ctx *, const struct cfg_ctx_set_cfg *);
33
34extern struct wps_dat *
35wps_svc_wps_dat(struct wps_svc_dat *);
36
37
38#endif /* !defined(__wps_svc_h__) */
39