Ejemplo n.º 1
0
bool socket_write_int64(int fd, int64_t n)
{
    return write_copyable_type(fd, n);
}
Ejemplo n.º 2
0
oc::result<void> socket_write_int64(int fd, int64_t n)
{
    return write_copyable_type(fd, n);
}
Ejemplo n.º 3
0
bool socket_write_uint32(int fd, uint32_t n)
{
    return write_copyable_type(fd, n);
}
Ejemplo n.º 4
0
oc::result<void> socket_write_uint32(int fd, uint32_t n)
{
    return write_copyable_type(fd, n);
}