gnutls_rc         378 lib/common/remote.c     ssize_t gnutls_rc;
gnutls_rc         387 lib/common/remote.c         gnutls_rc = gnutls_record_send(*session, unsent, unsent_len);
gnutls_rc         389 lib/common/remote.c         if (gnutls_rc == GNUTLS_E_INTERRUPTED || gnutls_rc == GNUTLS_E_AGAIN) {
gnutls_rc         393 lib/common/remote.c         } else if (gnutls_rc < 0) {
gnutls_rc         396 lib/common/remote.c                      gnutls_strerror((int) gnutls_rc),
gnutls_rc         397 lib/common/remote.c                      (long long) gnutls_rc);
gnutls_rc         400 lib/common/remote.c         } else if (gnutls_rc < unsent_len) {
gnutls_rc         402 lib/common/remote.c                       (long long) gnutls_rc, (unsigned long long) unsent_len);
gnutls_rc         403 lib/common/remote.c             unsent_len -= gnutls_rc;
gnutls_rc         404 lib/common/remote.c             unsent += gnutls_rc;
gnutls_rc         406 lib/common/remote.c             crm_trace("Sent all %lld bytes remaining", (long long) gnutls_rc);