Changeset 5226:3cb3cab29e5e in roaraudio for libroaresd/esdctl.c


Ignore:
Timestamp:
11/12/11 13:20:14 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Removed roarcat2sock as well as roar_simple_stream(), roar_simple_new_stream(), roar_simple_play(), roar_simple_monitor(), roar_simple_record(), roar_simple_filter(), roar_simple_close() and roar_simple_get_standby().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroaresd/esdctl.c

    r4975 r5226  
    367367/* see if the server is in stnaby, autostandby, etc */ 
    368368esd_standby_mode_t esd_get_standby_mode( int esd ) { 
    369  return roar_simple_get_standby(esd); 
     369 struct roar_connection con; 
     370 
     371 if ( roar_connect_fh(&con, esd) == -1 ) 
     372  return -1; 
     373 
     374 return roar_get_standby(&con); 
    370375} 
    371376 
Note: See TracChangeset for help on using the changeset viewer.