7 /* dummy write operation
9 /* #include <iostuff.h>
11 /* ssize_t dummy_write(fd, buf, buf_len, timeout, context)
18 /* dummy_write() implements a data sink without side effects.
22 /* File descriptor whose value is logged when verbose logging
25 /* Write buffer pointer. Not used.
27 /* Write buffer size. Its value is logged when verbose logging is
30 /* The deadline in seconds. Not used.
32 /* Application context. Not used.
38 /* The Secure Mailer license must be distributed with this software.
41 /* IBM T.J. Watson Research
43 /* Yorktown Heights, NY 10598, USA
50 /* Utility library. */
55 /* dummy_write - dummy write operation */
57 ssize_t
dummy_write(int fd
, void *unused_buf
, size_t len
,
58 int unused_timeout
, void *unused_context
)
61 msg_info("dummy_write: fd %d, len %lu", fd
, (unsigned long) len
);