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