rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | /* net/atm/addr.h - Local ATM address registry */ |
| 3 | |
| 4 | /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */ |
| 5 | |
| 6 | |
| 7 | #ifndef NET_ATM_ADDR_H |
| 8 | #define NET_ATM_ADDR_H |
| 9 | |
| 10 | #include <linux/atm.h> |
| 11 | #include <linux/atmdev.h> |
| 12 | |
| 13 | void atm_reset_addr(struct atm_dev *dev, enum atm_addr_type_t type); |
| 14 | int atm_add_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr, |
| 15 | enum atm_addr_type_t type); |
| 16 | int atm_del_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr, |
| 17 | enum atm_addr_type_t type); |
| 18 | int atm_get_addr(struct atm_dev *dev, struct sockaddr_atmsvc __user *buf, |
| 19 | size_t size, enum atm_addr_type_t type); |
| 20 | |
| 21 | #endif |