forked from aya-rs/book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
93 lines (88 loc) · 2.5 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
site_name: Aya
repo_url: https://github.com/aya-rs/aya
site_url: https://aya-rs.dev
edit_uri: ../book/edit/main/docs
extra_css:
- stylesheets/extra.css
theme:
name: material
custom_dir: overrides
language: en
logo: assets/images/crabby.svg
favicon: assets/images/crabby.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: yellow
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: yellow
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- content.code.annotate
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/xHW2cb2N6G
- icon: fontawesome/brands/github
link: https://github.com/aya-rs
- icon: fontawesome/solid/book
link: https://docs.rs/aya
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- tables
nav:
- Home:
- index.md
- Getting Started:
- book/index.md
- Development Environment: book/start/development.md
- A Simple XDP Program:
- book/start/index.md
- Hello XDP!: book/start/hello-xdp.md
- Parsing packets: book/start/parsing-packets.md
- Dropping Packets: book/start/dropping-packets.md
- Working With Aya:
- book/aya/index.md
- Program Lifecycle: book/aya/lifecycle.md
- Reading Values From A Context: book/aya/context.md
- Using aya-tool: book/aya/aya-tool.md
- Using aya-log: book/aya/aya-log.md
- Cross-compilation: book/aya/crosscompile.md
- Program Types:
- book/programs/index.md
- Probes: book/programs/probes.md
- Tracepoints: book/programs/tracepoints.md
- Socket Programs: book/programs/sockets.md
- Classifiers: book/programs/classifiers.md
- Cgroups: book/programs/cgroups.md
- Cgroup SKB: book/programs/cgroup-skb.md
- XDP: book/programs/xdp.md
- LSM: book/programs/lsm.md
- Community:
- community/index.md
- Code of Conduct: community/code_of_conduct.md
plugins:
- search
copyright: Copyright © 2021-2022 The Aya Contribtutors