Navigation


Changes in / [968:652713ce3596:967:bbc08d58325a] in freeDiameter


Ignore:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/libfdcore.h

    r968 r947  
    385385int fd_peer_get_state(struct peer_hdr *peer);
    386386
    387 /*
    388  * FUNCTION:    fd_peer_get_load_pending
    389  *
    390  * PARAMETERS:
    391  *  peer        : The peer which load to read
    392  *
    393  * DESCRIPTION:
    394  *   Returns the current number of requests sent to this peer
    395  *  that have not been answered yet. This is an empirical indication
    396  *  of the workload of this peer.
    397  *
    398  * RETURN VALUE:
    399  *  0  : The load parameter has been updated. (it should have a positive value always)
    400  * !0  : An error occurred
    401  */
    402 int fd_peer_get_load_pending(struct peer_hdr *peer, int * load);
    403 
    404387/*
    405388 * FUNCTION:    fd_peer_validate_register
  • libfdcore/fdcore-internal.h

    r938 r928  
    126126        struct fd_list  srs; /* requests ordered by hop-by-hop id */
    127127        struct fd_list  exp; /* requests that have a timeout set, ordered by timeout */
    128         int             cnt; /* number of requests in the srs list */
    129128        pthread_mutex_t mtx; /* mutex to protect these lists */
    130129        pthread_cond_t  cnd; /* cond var used by the thread that handles timeouts */
  • libfdcore/fdd.l

    r968 r961  
    5252        yylloc->first_column = yylloc->last_column + 1;                 \
    5353        yylloc->last_column = yylloc->first_column + yyleng - 1;        \
    54         fd_log_debug(                                                   \
     54        TRACE_DEBUG_ERROR(                                              \
    5555                "(%d:%d-%d:%d) matched rule %d, length=%d, txt='%s'\n", \
    5656                yylloc->first_line, yylloc->first_column,               \
  • libfdcore/p_sr.c

    r938 r837  
    226226        *req = NULL;
    227227        fd_list_insert_before(next, &sr->chain);
    228         srlist->cnt++;
    229228        srl_dump("Saved new request, ", &srlist->srs);
    230229       
     
    282281                /* Unlink */
    283282                fd_list_unlink(&sr->chain);
    284                 srlist->cnt--;
    285283                fd_list_unlink(&sr->expire);
    286284                *req = sr->req;
     
    302300                struct sentreq * sr = (struct sentreq *)(srlist->srs.next);
    303301                fd_list_unlink(&sr->chain);
    304                 srlist->cnt--;
    305302                fd_list_unlink(&sr->expire);
    306303                if (fd_msg_is_routable(sr->req)) {
  • libfdcore/peers.c

    r968 r961  
    257257}
    258258
    259 /* Return the value of srlist->cnt */
    260 int fd_peer_get_load_pending(struct peer_hdr *peer, int * load)
    261 {
    262         struct fd_peer * p = (struct fd_peer *)peer;
    263         TRACE_ENTRY("%p %p", peer, load);
    264         CHECK_PARAMS(CHECK_PEER(peer) && load);
    265        
    266         CHECK_POSIX( pthread_mutex_lock(&p->p_sr.mtx) );
    267         *load = p->p_sr.cnt;
    268         CHECK_POSIX( pthread_mutex_unlock(&p->p_sr.mtx) );
    269        
    270         return 0;
    271 }
    272 
    273 
    274259/* Destroy a structure once cleanups have been performed (fd_psm_abord, ...) */
    275260int fd_peer_free(struct fd_peer ** ptr)
     
    410395        }
    411396
    412         fd_log_debug(">  %s\t%s\t[%dsr]", STATE_STR(fd_peer_getstate(peer)), peer->p_hdr.info.pi_diamid, peer->p_sr.cnt);
     397        fd_log_debug(">  %s\t%s", STATE_STR(fd_peer_getstate(peer)), peer->p_hdr.info.pi_diamid);
    413398        if (details > INFO) {
    414399                fd_log_debug("\t(rlm:%s)", peer->p_hdr.info.runtime.pir_realm ?: "<unknown>");
Note: See TracChangeset for help on using the changeset viewer.