summaryrefslogtreecommitdiff
path: root/docs/man/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man/CMakeLists.txt')
-rw-r--r--docs/man/CMakeLists.txt32
1 files changed, 29 insertions, 3 deletions
diff --git a/docs/man/CMakeLists.txt b/docs/man/CMakeLists.txt
index ecdbf1e2..b88a0ddd 100644
--- a/docs/man/CMakeLists.txt
+++ b/docs/man/CMakeLists.txt
@@ -272,6 +272,28 @@ if (NNG_ENABLE_DOC)
nng_http_server_stop
)
+ set(NNG_MAN3IPC
+ nng_ipc_close
+ nng_ipc_free
+ nng_ipc_getopt
+ nng_ipc_dialer_alloc
+ nng_ipc_dialer_close
+ nng_ipc_dialer_dial
+ nng_ipc_dialer_free
+ nng_ipc_dialer_getopt
+ nng_ipc_dialer_setopt
+ nng_ipc_listener_accept
+ nng_ipc_listener_alloc
+ nng_ipc_listener_close
+ nng_ipc_listener_free
+ nng_ipc_listener_getopt
+ nng_ipc_listener_listen
+ nng_ipc_listener_setopt
+ nng_ipc_recv
+ nng_ipc_send
+ nng_ipc_setopt
+ )
+
set(NNG_MAN3SUPP
nng_clock
nng_cv_alloc
@@ -291,7 +313,7 @@ if (NNG_ENABLE_DOC)
nng_thread_destroy
)
- set(NNG_MAN3TCP
+ set(NNG_MAN3TCP
nng_tcp_close
nng_tcp_free
nng_tcp_getopt
@@ -311,7 +333,7 @@ if (NNG_ENABLE_DOC)
nng_tcp_recv
nng_tcp_send
nng_tcp_setopt
- )
+ )
set(NNG_MAN3TLS
nng_tls_config_alloc
@@ -385,13 +407,17 @@ if (NNG_ENABLE_DOC)
nng_man(${F} 3http)
endforeach()
+ foreach(F ${NNG_MAN3IPC})
+ nng_man(${F} 3ipc)
+ endforeach()
+
foreach(F ${NNG_MAN3SUPP})
nng_man(${F} 3supp)
endforeach()
foreach(F ${NNG_MAN3TCP})
nng_man(${F} 3tcp)
- endforeach()
+ endforeach()
foreach(F ${NNG_MAN3TLS})
nng_man(${F} 3tls)