Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* net/atm/protocols.h - ATM protocol handler entry points */
0003 
0004 /* Written 1995-1997 by Werner Almesberger, EPFL LRC */
0005 
0006 
0007 #ifndef NET_ATM_PROTOCOLS_H
0008 #define NET_ATM_PROTOCOLS_H
0009 
0010 int atm_init_aal0(struct atm_vcc *vcc); /* "raw" AAL0 */
0011 int atm_init_aal34(struct atm_vcc *vcc);/* "raw" AAL3/4 transport */
0012 int atm_init_aal5(struct atm_vcc *vcc); /* "raw" AAL5 transport */
0013 
0014 #endif