Changeset 2529:eba7f2ff0163 in roaraudio for roard/network.c


Ignore:
Timestamp:
09/01/09 20:49:30 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

got basic streaming working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/network.c

    r1494 r2529  
    6969 socklen_t cred_len = sizeof(cred); 
    7070#endif 
     71 struct roar_vio_calls vio; 
    7172 
    7273 fh = accept(g_listen_socket, NULL, NULL); 
     
    106107#endif 
    107108 
     109 if ( clients_set_proto(client, ROAR_PROTO_ESOUND) == -1 ) 
     110  return -1; 
     111 
     112 if ( roar_vio_open_fh(&vio, fh) == -1 ) 
     113  return -1; 
     114 
     115 if ( emul_esd_exec_command(client, ESD_PROTO_CONNECT, &vio) == -1 ) 
     116  return -1; 
     117 
    108118// close(fh); 
    109119 
Note: See TracChangeset for help on using the changeset viewer.