Searched refs:listen_fd (Results 1 - 1 of 1) sorted by relevance

/xsrc/external/mit/xf86-video-qxl/dist/src/
H A Dspiceqxl_smartcard.c41 int listen_fd; member in struct:XSpiceSmartcardCharDeviceInstance
160 smartcard_sin.listen_fd = socket(AF_UNIX, SOCK_STREAM, 0);
161 if (smartcard_sin.listen_fd < 0) {
171 if (bind(smartcard_sin.listen_fd, (struct sockaddr *) &addr, sizeof(addr))) {
173 close(smartcard_sin.listen_fd);
177 if (listen(smartcard_sin.listen_fd, 1)) {
179 close(smartcard_sin.listen_fd);
183 smartcard_sin.listen_watch = qxl->core->watch_add(smartcard_sin.listen_fd, SPICE_WATCH_EVENT_READ, on_accept_available, qxl);

Completed in 1 milliseconds