protocols.h 379 B

12345678910111213
  1. /* net/atm/protocols.h - ATM protocol handler entry points */
  2. /* Written 1995-1997 by Werner Almesberger, EPFL LRC */
  3. #ifndef NET_ATM_PROTOCOLS_H
  4. #define NET_ATM_PROTOCOLS_H
  5. int atm_init_aal0(struct atm_vcc *vcc); /* "raw" AAL0 */
  6. int atm_init_aal34(struct atm_vcc *vcc);/* "raw" AAL3/4 transport */
  7. int atm_init_aal5(struct atm_vcc *vcc); /* "raw" AAL5 transport */
  8. #endif