blob: 527810776c7f80007b67015341664c2022fe83af [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001
2#ifndef __EXT_CMUX_REGIST_H__
3#define __EXT_CMUX_REGIST_H__
4
5#if (APP_OS_TYPE == APP_OS_LINUX)
6
7#include "ext_regist.h"
8#include "softap_api.h"
9#include "at_utils.h"
10#include <stdio.h>
11#include <stdarg.h>
12#include <stdint.h>
13#include <ctype.h>
14#include <fcntl.h>
15#include <errno.h>
16#include <unistd.h>
17#include <termios.h>
18#include <sys/ipc.h>
19#include <sys/msg.h>
20#include <sys/stat.h>
21#include <arpa/inet.h>
22#include <stdlib.h>
23#include <pty.h>
24
25//add for cmux
26#include <linux/if.h>
27#include <linux/gsmmux.h>
28#include <poll.h>
29
30//========================================================================================================//
31//º¯ÊýÉùÃ÷Çø
32//========================================================================================================//
33
34int zcmuxSet_req(int at_fd,char * at_paras,void * *res_msg,int * res_msglen);
35int zcmuxSet_rsp(void *rsp_msg, void**ret, int *retlen);
36
37#endif
38
39#endif /*__EXT_CMUX_REGIST_H__*/