Changeset 5137:d2aa7e38d3b2 in roaraudio


Ignore:
Timestamp:
09/30/11 17:08:15 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added some debugging lions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/socket.c

    r5121 r5137  
    599599   } 
    600600 
     601  ROAR_DBG("roar_socket_open(*): obj='%s', port=%i", obj, port); 
     602 
    601603  if ( mode == MODE_LISTEN ) { 
    602604   fh = roar_socket_listen_decnet(obj, port); 
     
    606608  } else { 
    607609   // There is nothing wrong in this case to use dnet_conn() so we do. 
     610   ROAR_DBG("roar_socket_open(*): CALL dnet_conn('%s', '%s', SOCK_STREAM, 0 ,0 ,0 , 0)", host, obj); 
    608611   fh = dnet_conn(host, obj, SOCK_STREAM, 0 ,0 ,0 , 0); 
     612   ROAR_DBG("roar_socket_open(*): RET %i", fh); 
    609613   *del = ':'; 
    610614   return fh; 
Note: See TracChangeset for help on using the changeset viewer.