Searched refs:handoff_data (Results 1 – 1 of 1) sorted by relevance
221 socket_handoff(socket_handoff_t *handoff_data) in socket_handoff() argument231 connected_fd = accept(handoff_data->fd, NULL, NULL); in socket_handoff()235 handoff_data->fd, strerror(errno)); in socket_handoff()248 close(handoff_data->fd); in socket_handoff()249 unlink(handoff_data->filename); in socket_handoff()250 free(handoff_data); in socket_handoff()322 socket_handoff_t *handoff_data; in do_request_fd_handoff_socket() local326 handoff_data = (socket_handoff_t *)calloc(1, sizeof(socket_handoff_t)); in do_request_fd_handoff_socket()327 if (!handoff_data) { in do_request_fd_handoff_socket()332 handoff_data->fd = create_socket(handoff_data->filename); in do_request_fd_handoff_socket()[all …]