blob: 2f8a7999390550e9500029807b1b4486f585a4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
TACACS+ D-Bus Daemon code
Copyright (c) 2019 AT&T Intellectual Property.
SPDX-License-Identifier: GPL-2.0-only
*/
#ifndef _TRANSACTION_PRIVATE_H
#define _TRANSACTION_PRIVATE_H
/*
* This header leaks the TACACS+ implementation being used (ie. libtac)
* and is only intended to be included by transaction.c and appropriate UTs.
*/
struct transaction_attrib *transaction_attrib_from_tac_attrib(const struct tac_attrib *);
#endif /*_TRANSACTION_PRIVATE_H */
|