MCPcopy Create free account
hub / github.com/apache/qpid-proton / link_send

Function link_send

c/tests/engine_test.cpp:371–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

369}
370
371static ssize_t link_send(pn_link_t *s, size_t n) {
372 char buf[5120];
373 if (n > 5120) return PN_ARG_ERR;
374 memset(buf, 'x', n);
375 return pn_link_send(s, buf, n);
376}
377
378static ssize_t link_recv(pn_link_t *r, size_t n) {
379 char buf[5120];

Callers 1

engine_test.cppFile · 0.70

Calls 1

pn_link_sendFunction · 0.50

Tested by

no test coverage detected