003 File Manager
Current Path:
/usr/src/contrib/wpa/src/fst
usr
/
src
/
contrib
/
wpa
/
src
/
fst
/
📁
..
📄
Makefile
(95 B)
📄
fst.c
(5.07 KB)
📄
fst.h
(8.35 KB)
📄
fst_ctrl_aux.c
(1.94 KB)
📄
fst_ctrl_aux.h
(2.52 KB)
📄
fst_ctrl_defs.h
(4.7 KB)
📄
fst_ctrl_iface.c
(22.93 KB)
📄
fst_ctrl_iface.h
(1.17 KB)
📄
fst_defs.h
(1.82 KB)
📄
fst_group.c
(13.29 KB)
📄
fst_group.h
(1.9 KB)
📄
fst_iface.c
(1.71 KB)
📄
fst_iface.h
(3.3 KB)
📄
fst_internal.h
(1.34 KB)
📄
fst_session.c
(40 KB)
📄
fst_session.h
(2.88 KB)
Editing: fst_ctrl_iface.h
/* * FST module - internal Control interface definitions * Copyright (c) 2014, Qualcomm Atheros, Inc. * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef FST_CTRL_IFACE_H #define FST_CTRL_IFACE_H #include "fst/fst_ctrl_aux.h" #ifdef CONFIG_FST /* receiver */ int fst_ctrl_iface_mb_info(const u8 *addr, char *buf, size_t buflen); int fst_ctrl_iface_receive(const char *txtaddr, char *buf, size_t buflen); extern const struct fst_ctrl *fst_ctrl_cli; #else /* CONFIG_FST */ static inline int fst_ctrl_iface_mb_info(const u8 *addr, char *buf, size_t buflen) { return 0; } #endif /* CONFIG_FST */ int fst_read_next_int_param(const char *params, Boolean *valid, char **endp); int fst_read_next_text_param(const char *params, char *buf, size_t buflen, char **endp); int fst_read_peer_addr(const char *mac, u8 *peer_addr); struct fst_iface_cfg; int fst_parse_attach_command(const char *cmd, char *ifname, size_t ifname_size, struct fst_iface_cfg *cfg); int fst_parse_detach_command(const char *cmd, char *ifname, size_t ifname_size); int fst_iface_detach(const char *ifname); #endif /* CTRL_IFACE_FST_H */
Upload File
Create Folder