diff options
author | Dante Catalfamo | 2020-11-21 17:58:27 -0500 |
---|---|---|
committer | Dante Catalfamo | 2020-11-21 17:58:27 -0500 |
commit | 805747884de4b39384ff49b3431af8e8d4773bd7 (patch) | |
tree | 39c7ec4bce6a75c8f196dde8b6cd4256f933c047 /content | |
parent | 3c3ecba8fb06f421ca2d766ff881eb5fafcf3a4a (diff) | |
download | blog-805747884de4b39384ff49b3431af8e8d4773bd7.tar.gz blog-805747884de4b39384ff49b3431af8e8d4773bd7.tar.bz2 blog-805747884de4b39384ff49b3431af8e8d4773bd7.zip |
Add more custom IDs
Diffstat (limited to 'content')
-rw-r--r-- | content/posts/WIP-how-bsd-authentication-works/index.org | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/content/posts/WIP-how-bsd-authentication-works/index.org b/content/posts/WIP-how-bsd-authentication-works/index.org index d99b7a5..fd7d511 100644 --- a/content/posts/WIP-how-bsd-authentication-works/index.org +++ b/content/posts/WIP-how-bsd-authentication-works/index.org @@ -269,6 +269,10 @@ =auth_getitem= is used to return the value of the fields listed above. *** auth_item_t + :PROPERTIES: + :CUSTOM_ID: auth_item_t + :END: + =auth_item_t= is an enum defined in =/include/bsd_auth.h=. #+begin_src c @@ -728,6 +732,10 @@ =okay= is then returned to the caller. ** _auth_next_arg + :PROPERTIES: + :CUSTOM_ID: _auth_next_arg + :END: + #+BEGIN_SRC c static char *_auth_next_arg(auth_session_t *as) #+END_SRC @@ -741,6 +749,10 @@ Finally when it's gone through both lists, returns =NULL= ** _auth_spool + :PROPERTIES: + :CUSTOM_ID: _auth_spool + :END: + #+begin_src c static void _auth_spool(auth_session_t *as, int fd) #+end_src @@ -759,6 +771,10 @@ #+end_src ** _recv_fd + :PROPERTIES: + :CUSTOM_ID: _recv_fd + :END: + #+begin_src c static void _recv_fd(auth_session_t *as, int fd) #+end_src @@ -772,6 +788,10 @@ descriptor. ** _add_rmlist + :PROPERTIES: + :CUSTOM_ID: _add_rmlist + :END: + #+begin_src c static void _add_rmlist(auth_session_t *as, char *file) #+end_src |