Blame view

net/atm/addr.h 654 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
11
  /* net/atm/addr.h - Local ATM address registry */
  
  /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  
  
  #ifndef NET_ATM_ADDR_H
  #define NET_ATM_ADDR_H
  
  #include <linux/atm.h>
  #include <linux/atmdev.h>
0f21ba7cc   Eric Kinzie   [ATM]: add suppor...
12
  void atm_reset_addr(struct atm_dev *dev, enum atm_addr_type_t type);
61c33e012   Mitchell Blank Jr   atm: use const wh...
13
  int atm_add_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
0f21ba7cc   Eric Kinzie   [ATM]: add suppor...
14
  		 enum atm_addr_type_t type);
61c33e012   Mitchell Blank Jr   atm: use const wh...
15
  int atm_del_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
0f21ba7cc   Eric Kinzie   [ATM]: add suppor...
16
17
18
  		 enum atm_addr_type_t type);
  int atm_get_addr(struct atm_dev *dev, struct sockaddr_atmsvc __user *buf,
  		 size_t size, enum atm_addr_type_t type);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
  
  #endif