• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1  /* net/atm/addr.h - Local ATM address registry */
2  
3  /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
4  
5  
6  #ifndef NET_ATM_ADDR_H
7  #define NET_ATM_ADDR_H
8  
9  #include <linux/atm.h>
10  #include <linux/atmdev.h>
11  
12  void atm_reset_addr(struct atm_dev *dev, enum atm_addr_type_t type);
13  int atm_add_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
14  		 enum atm_addr_type_t type);
15  int atm_del_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
16  		 enum atm_addr_type_t type);
17  int atm_get_addr(struct atm_dev *dev, struct sockaddr_atmsvc __user *buf,
18  		 size_t size, enum atm_addr_type_t type);
19  
20  #endif
21