blob: da3f848411a04a8d73ff3dcf054ed5e5644296d5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* 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
Eric Kinzie0f21ba72005-10-06 22:19:28 -070013void atm_reset_addr(struct atm_dev *dev, enum atm_addr_type_t type);
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070014int atm_add_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
Eric Kinzie0f21ba72005-10-06 22:19:28 -070015 enum atm_addr_type_t type);
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -070016int atm_del_addr(struct atm_dev *dev, const struct sockaddr_atmsvc *addr,
Eric Kinzie0f21ba72005-10-06 22:19:28 -070017 enum atm_addr_type_t type);
18int atm_get_addr(struct atm_dev *dev, struct sockaddr_atmsvc __user *buf,
19 size_t size, enum atm_addr_type_t type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#endif