1<?php
2
3/**
4 * DNS Library for handling lookups and updates.
5 *
6 * Copyright (c) 2020, Mike Pultz <mike@mikepultz.com>. All rights reserved.
7 *
8 * See LICENSE for more details.
9 *
10 * @category  Networking
11 * @package   Net_DNS2
12 * @author    Mike Pultz <mike@mikepultz.com>
13 * @copyright 2020 Mike Pultz <mike@mikepultz.com>
14 * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
15 * @link      https://netdns2.com/
16 * @since     File available since Release 1.4.2
17 *
18 */
19
20/**
21 * The AVC RR is implemented exactly like the TXT record, so
22 * for now we just extend the TXT RR and use it.
23 *
24 */
25class Net_DNS2_RR_AVC extends Net_DNS2_RR_TXT
26{
27}
28