![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /usr/src/kernels/4.18.0-348.2.1.el8_5.x86_64/include/linux/ |
/* $Id: isdn_divertif.h,v 1.4.6.1 2001/09/23 22:25:05 kai Exp $ * * Header for the diversion supplementary interface for i4l. * * Author Werner Cornelius ([email protected]) * Copyright by Werner Cornelius ([email protected]) * * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. * */ #ifndef _LINUX_ISDN_DIVERTIF_H #define _LINUX_ISDN_DIVERTIF_H #include <linux/isdnif.h> #include <linux/types.h> #include <uapi/linux/isdn_divertif.h> /***************************************************************/ /* structure exchanging data between isdn hl and divert module */ /***************************************************************/ typedef struct { ulong if_magic; /* magic info and version */ int cmd; /* command */ int (*stat_callback)(isdn_ctrl *); /* supplied by divert module when calling */ int (*ll_cmd)(isdn_ctrl *); /* supplied by hl on return */ char * (*drv_to_name)(int); /* map a driver id to name, supplied by hl */ int (*name_to_drv)(char *); /* map a driver id to name, supplied by hl */ } isdn_divert_if; /*********************/ /* function register */ /*********************/ extern int DIVERT_REG_NAME(isdn_divert_if *); #endif /* _LINUX_ISDN_DIVERTIF_H */