b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | ;; -*- mode: CIL; fill-column: 79; indent-tabs-mode: nil; -*- |
| 2 | ;; SPDX-FileCopyrightText: © 2021 Dominick Grift <dominick.grift@defensec.nl> |
| 3 | ;; SPDX-License-Identifier: Unlicense |
| 4 | |
| 5 | (in .dns |
| 6 | |
| 7 | (block client |
| 8 | |
| 9 | (blockinherit .net.packet.obj_template) |
| 10 | |
| 11 | (call .dns.packet.obj_type (netpacket))) |
| 12 | |
| 13 | (block local |
| 14 | |
| 15 | (block client |
| 16 | |
| 17 | (blockinherit .net.packet.obj_template) |
| 18 | |
| 19 | (call .dns.packet.obj_type (netpacket))) |
| 20 | |
| 21 | (block server |
| 22 | |
| 23 | (blockinherit .net.packet.obj_template) |
| 24 | |
| 25 | (call .dns.packet.obj_type (netpacket)))) |
| 26 | |
| 27 | (block packet |
| 28 | |
| 29 | (blockinherit .net.packet.obj_all_macro_template)) |
| 30 | |
| 31 | (block server |
| 32 | |
| 33 | (blockinherit .net.packet.obj_template) |
| 34 | |
| 35 | (call .dns.packet.obj_type (netpacket)))) |