Ignore:
Timestamp:
May 9, 2019 4:35:41 AM (5 years ago)
Author:
nanang
Message:

Re #1298: Updated PJLIB to use PJ_ERROR consistently.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/ioqueue_select.c

    r5849 r5980  
    751751            status = pj_sock_getsockname(old_sock, &local_addr, &addr_len); 
    752752            if (status != PJ_SUCCESS) { 
    753                 PJ_LOG(5,(THIS_FILE, "Error get socket name %d", status)); 
     753                PJ_PERROR(5,(THIS_FILE, status, "Error get socket name")); 
    754754                continue; 
    755755            } 
     
    758758            status = pj_sock_getpeername(old_sock, &rem_addr, &addr_len); 
    759759            if (status != PJ_SUCCESS) { 
    760                 PJ_LOG(5,(THIS_FILE, "Error get peer name %d", status)); 
     760                PJ_PERROR(5,(THIS_FILE, status, "Error get peer name")); 
    761761            } else { 
    762762                flags |= HAS_PEER_ADDR; 
     
    767767                status == PJ_STATUS_FROM_OS(EINVAL)) 
    768768            { 
    769                 PJ_LOG(5,(THIS_FILE, "Error get qos param %d", status)); 
     769                PJ_PERROR(5,(THIS_FILE, status, "Error get qos param")); 
    770770                continue; 
    771771            } 
    772772         
    773773            if (status != PJ_SUCCESS) { 
    774                 PJ_LOG(5,(THIS_FILE, "Error get qos param %d", status)); 
     774                PJ_PERROR(5,(THIS_FILE, status, "Error get qos param")); 
    775775            } else { 
    776776                flags |= HAS_QOS; 
     
    782782            status = pj_sock_close(old_sock); 
    783783            if (status != PJ_SUCCESS) { 
    784                 PJ_LOG(5,(THIS_FILE, "Error closing socket %d", status)); 
     784                PJ_PERROR(5,(THIS_FILE, status, "Error closing socket")); 
    785785            } 
    786786             
     
    792792                                &new_sock); 
    793793        if (status != PJ_SUCCESS) { 
    794             PJ_LOG(5,(THIS_FILE, "Error create socket %d", status)); 
     794            PJ_PERROR(5,(THIS_FILE, status, "Error create socket")); 
    795795            continue; 
    796796        } 
     
    805805            status == PJ_STATUS_FROM_OS(EINVAL)) 
    806806        { 
    807             PJ_LOG(5,(THIS_FILE, "Error set socket option %d", 
    808                       status)); 
     807            PJ_PERROR(5,(THIS_FILE, status, "Error set socket option")); 
    809808            continue; 
    810809        } 
     
    826825            status = pj_sock_set_qos_params(new_sock, &qos_params); 
    827826            if (status == PJ_STATUS_FROM_OS(EINVAL)) { 
    828                 PJ_LOG(5,(THIS_FILE, "Error set qos param %d", status)); 
     827                PJ_PERROR(5,(THIS_FILE, status, "Error set qos param")); 
    829828                continue; 
    830829            } 
     
    834833            status = pj_sock_connect(new_sock, &rem_addr, addr_len); 
    835834            if (status != PJ_SUCCESS) { 
    836                 PJ_LOG(5,(THIS_FILE, "Error connect socket %d", status)); 
     835                PJ_PERROR(5,(THIS_FILE, status, "Error connect socket")); 
    837836                continue; 
    838837            } 
     
    889888 
    890889    h->fd = PJ_INVALID_SOCKET; 
    891     PJ_PERROR(1,(THIS_FILE, status, "Error replacing socket [%d]", status)); 
     890    PJ_PERROR(1,(THIS_FILE, status, "Error replacing socket %d", old_sock)); 
    892891    pj_lock_release(h->ioqueue->lock); 
    893892    return PJ_ESOCKETSTOP; 
Note: See TracChangeset for help on using the changeset viewer.