ssock              91 daemons/based/based_remote.c     int *ssock = NULL;
ssock             128 daemons/based/based_remote.c     ssock = malloc(sizeof(int));
ssock             129 daemons/based/based_remote.c     if(ssock == NULL) {
ssock             134 daemons/based/based_remote.c     *ssock = socket(AF_INET, SOCK_STREAM, 0);
ssock             135 daemons/based/based_remote.c     if (*ssock == -1) {
ssock             137 daemons/based/based_remote.c         free(ssock);
ssock             143 daemons/based/based_remote.c     rc = setsockopt(*ssock, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval));
ssock             154 daemons/based/based_remote.c     if (bind(*ssock, (struct sockaddr *)&saddr, sizeof(saddr)) == -1) {
ssock             156 daemons/based/based_remote.c         close(*ssock);
ssock             157 daemons/based/based_remote.c         free(ssock);
ssock             160 daemons/based/based_remote.c     if (listen(*ssock, 10) == -1) {
ssock             162 daemons/based/based_remote.c         close(*ssock);
ssock             163 daemons/based/based_remote.c         free(ssock);
ssock             167 daemons/based/based_remote.c     mainloop_add_fd("cib-remote", G_PRIORITY_DEFAULT, *ssock, ssock, &remote_listen_fd_callbacks);
ssock             170 daemons/based/based_remote.c     return *ssock;
ssock             285 daemons/based/based_remote.c     int ssock = *(int *)data;
ssock             298 daemons/based/based_remote.c     csock = accept(ssock, (struct sockaddr *)&addr, &laddr);
ssock             306 daemons/based/based_remote.c               ((ssock == remote_tls_fd)? "secure" : "clear-text"), ipstr);
ssock             321 daemons/based/based_remote.c     if (ssock == remote_tls_fd) {
ssock              38 daemons/execd/remoted_tls.c static int ssock = -1;
ssock             212 daemons/execd/remoted_tls.c     CRM_CHECK(ssock >= 0, return TRUE);
ssock             214 daemons/execd/remoted_tls.c     if (pcmk__accept_remote_connection(ssock, &csock) != pcmk_rc_ok) {
ssock             344 daemons/execd/remoted_tls.c     CRM_CHECK(ssock == -1, return ssock);
ssock             386 daemons/execd/remoted_tls.c             ssock = bind_and_listen(iter);
ssock             388 daemons/execd/remoted_tls.c         if (ssock != -1) {
ssock             399 daemons/execd/remoted_tls.c     if (ssock >= 0) {
ssock             400 daemons/execd/remoted_tls.c         mainloop_add_fd("pacemaker-remote-server", G_PRIORITY_DEFAULT, ssock,
ssock             406 daemons/execd/remoted_tls.c     return ssock;
ssock             417 daemons/execd/remoted_tls.c     if (ssock >= 0) {
ssock             418 daemons/execd/remoted_tls.c         close(ssock);
ssock             419 daemons/execd/remoted_tls.c         ssock = -1;
ssock              24 include/crm/common/remote_internal.h int pcmk__accept_remote_connection(int ssock, int *csock);
ssock            1194 lib/common/remote.c pcmk__accept_remote_connection(int ssock, int *csock)
ssock            1203 lib/common/remote.c     *csock = accept(ssock, (struct sockaddr *)&addr, &laddr);