vsock_test_zerocopy.h 716 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef VSOCK_TEST_ZEROCOPY_H
  3. #define VSOCK_TEST_ZEROCOPY_H
  4. #include "util.h"
  5. void test_stream_msgzcopy_client(const struct test_opts *opts);
  6. void test_stream_msgzcopy_server(const struct test_opts *opts);
  7. void test_seqpacket_msgzcopy_client(const struct test_opts *opts);
  8. void test_seqpacket_msgzcopy_server(const struct test_opts *opts);
  9. void test_stream_msgzcopy_empty_errq_client(const struct test_opts *opts);
  10. void test_stream_msgzcopy_empty_errq_server(const struct test_opts *opts);
  11. void test_stream_msgzcopy_mangle_client(const struct test_opts *opts);
  12. void test_stream_msgzcopy_mangle_server(const struct test_opts *opts);
  13. #endif /* VSOCK_TEST_ZEROCOPY_H */