Changeset 5238:5117fb0e7ed4 in roaraudio for libroar/simple.c


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

Removed roar_stream_connect(), roar_stream_add_data(), roar_stream_send_data() and roar_stream_set_flags().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/simple.c

    r5237 r5238  
    8282 } 
    8383 
    84  if ( roar_stream_connect2(&con, s, dir, -1) == -1 ) { 
     84 if ( roar_stream_connect(&con, s, dir, -1) == -1 ) { 
    8585  safe_error = roar_error; 
    8686  roar_disconnect(&con); 
     
    254254 } 
    255255 
    256  if ( roar_stream_connect2(con, s, dir, -1) == -1 ) { 
     256 if ( roar_stream_connect(con, s, dir, -1) == -1 ) { 
    257257  return -1; 
    258258 } 
     
    417417  return -1; 
    418418 
    419  if ( roar_stream_connect2(con, s, dir, -1) == -1 ) 
    420   return -1; 
    421  
    422  if ( roar_stream_set_flags2(con, s, ROAR_FLAG_VIRTUAL, ROAR_SET_FLAG) == -1 ) { 
     419 if ( roar_stream_connect(con, s, dir, -1) == -1 ) 
     420  return -1; 
     421 
     422 if ( roar_stream_set_flags(con, s, ROAR_FLAG_VIRTUAL, ROAR_SET_FLAG) == -1 ) { 
    423423  roar_kick(con, ROAR_OT_STREAM, roar_stream_get_id(s)); 
    424424  return -1; 
Note: See TracChangeset for help on using the changeset viewer.