_assert(pthread_create(&client->thread_, NULL, &OnClient, client) == 0);
}
_assert(pthread_create(&client->thread_, NULL, &OnClient, client) == 0);
}
int socket(_syscall(::socket(PF_UNIX, SOCK_STREAM, 0)));
struct sockaddr_un address;
memset(&address, 0, sizeof(address));
address.sun_family = AF_UNIX;
int socket(_syscall(::socket(PF_UNIX, SOCK_STREAM, 0)));
struct sockaddr_un address;
memset(&address, 0, sizeof(address));
address.sun_family = AF_UNIX;
} catch (const CYException &error) {
CYPool pool;
fprintf(stderr, "%s\n", error.PoolCString(pool));
} catch (const CYException &error) {
CYPool pool;
fprintf(stderr, "%s\n", error.PoolCString(pool));