Home
last modified time | relevance | path

Searched refs:nn_msghdr (Results 1 – 23 of 23) sorted by relevance

/dports/net/nng/nng-1.5.2/include/nng/compat/nanomsg/
H A Dnn.h228 struct nn_msghdr { struct
249 #define NN_CMSG_FIRSTHDR(mh) nn_cmsg_next((struct nn_msghdr *) (mh), NULL) argument
251 nn_cmsg_next((struct nn_msghdr *) (mh), (struct nn_cmsghdr *) ch)
258 struct nn_msghdr *, struct nn_cmsghdr *);
267 NN_DECL int nn_sendmsg(int, const struct nn_msghdr *, int);
268 NN_DECL int nn_recvmsg(int, struct nn_msghdr *, int);
/dports/net/nanomsg/nanomsg-1.1.5/src/
H A Dnn.h270 struct nn_msghdr { struct
285 const struct nn_msghdr *mhdr, argument
293 nn_cmsg_nxthdr_ ((struct nn_msghdr*) (mhdr), NULL)
296 nn_cmsg_nxthdr_ ((struct nn_msghdr*) (mhdr), (struct nn_cmsghdr*) (cmsg))
357 NN_EXPORT int nn_sendmsg (int s, const struct nn_msghdr *msghdr, int flags);
358 NN_EXPORT int nn_recvmsg (int s, struct nn_msghdr *msghdr, int flags);
/dports/net/nanomsg/nanomsg-1.1.5/doc/
H A Dnn_cmsg.adoc13 *struct nn_cmsghdr *NN_CMSG_FIRSTHDR(struct nn_msghdr '*hdr');*
15 *struct nn_cmsghdr *NN_CMSG_NXTHDR(struct nn_msghdr '*hdr', struct nn_cmsghdr '*cmsg');*
38 …eturns a pointer to the first nn_cmsghdr in the control buffer in the supplied nn_msghdr structure.
H A Dnn_sendmsg.adoc13 *int nn_sendmsg (int 's', const struct nn_msghdr '*msghdr', int 'flags');*
22 Structure 'nn_msghdr' contains at least following members:
107 struct nn_msghdr hdr;
124 struct nn_msghdr hdr;
H A Dnn_recvmsg.adoc13 *NN_EXPORT int nn_recvmsg (int 's', struct nn_msghdr '*msghdr', int 'flags');*
22 Structure 'nn_msghdr' contains at least following members:
90 struct nn_msghdr hdr;
/dports/net/nanomsg/nanomsg-1.1.5/src/devices/
H A Ddevice.h68 int from, int to, int flags, struct nn_msghdr *msghdr, int bytes);
80 int from, int to, int flags, struct nn_msghdr *msghdr, int bytes);
H A Ddevice.c291 struct nn_msghdr hdr; in nn_device_mvmsg()
323 NN_UNUSED struct nn_msghdr *msghdr, NN_UNUSED int bytes) in nn_device_rewritemsg()
/dports/net/nng/nng-1.5.2/docs/man/
H A Dnn_recvmsg.3compat.adoc22 int nn_recvmsg(int sock, struct nn_msghdr *hdr, int flags);
38 The _hdr_ points to a structure of type `struct nn_msghdr`, which has the
48 struct nn_msghdr {
H A Dnn_sendmsg.3compat.adoc22 int nn_sendmsg(int sock, const struct nn_msghdr *hdr, int flags);
38 The _hdr_ points to a structure of type `struct nn_msghdr`, which has the
48 struct nn_msghdr {
H A Dnn_cmsg.3compat.adoc50 `struct nn_cmsghdr *NN_CMSG_FIRSTHDR(struct nn_msghdr *__hdr__)`::
53 `struct nn_cmsghdr *NN_CMSG_NXTHDR(struct nn_msghdr *__hdr__, struct nn_cmsghdr *__ch__)`::
/dports/net/nanomsg/nanomsg-1.1.5/demo/
H A Dasync_demo.c64 struct nn_msghdr request;
113 struct nn_msghdr hdr; in server()
H A Dpthread_demo.c83 struct nn_msghdr hdr; in worker()
/dports/net/nanomsg/nanomsg-1.1.5/tests/
H A Diovec.c38 struct nn_msghdr hdr; in main()
H A Dcmsg.c36 struct nn_msghdr hdr; in main()
H A Dmsg.c44 struct nn_msghdr hdr; in main()
H A Dzerocopy.c49 struct nn_msghdr hdr;
H A Dinproc.c44 struct nn_msghdr hdr; in main()
/dports/net/nng/nng-1.5.2/tests/
H A Dcompat_iovec.c38 struct nn_msghdr hdr; in main()
H A Dcompat_cmsg.c36 struct nn_msghdr hdr; in main()
H A Dcompat_msg.c45 struct nn_msghdr hdr; in main()
/dports/net/nanomsg/nanomsg-1.1.5/src/core/
H A Dglobal.c381 struct nn_cmsghdr *nn_cmsg_nxthdr_ (const struct nn_msghdr *mhdr, in nn_cmsg_nxthdr_()
685 struct nn_msghdr hdr; in nn_send()
701 struct nn_msghdr hdr; in nn_recv()
714 int nn_sendmsg (int s, const struct nn_msghdr *msghdr, int flags) in nn_sendmsg()
854 int nn_recvmsg (int s, struct nn_msghdr *msghdr, int flags) in nn_recvmsg()
/dports/net/nng/nng-1.5.2/src/compat/nanomsg/
H A Dnn.c402 struct nn_msghdr hdr; in nn_send()
419 struct nn_msghdr hdr; in nn_recv()
433 nn_recvmsg(int s, struct nn_msghdr *mh, int flags) in nn_recvmsg()
553 nn_sendmsg(int s, const struct nn_msghdr *mh, int flags) in nn_sendmsg()
1152 nn_cmsg_next(struct nn_msghdr *mh, struct nn_cmsghdr *first) in nn_cmsg_next()
/dports/net/nanomsg/nanomsg-1.1.5/src/transports/ws/
H A Dsws.c375 struct nn_msghdr msghdr; in nn_sws_send()