mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	add simple ptorocol with unix
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@25 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
		
							parent
							
								
									56f8c953dd
								
							
						
					
					
						commit
						b4e3f5c5c5
					
				
					 3 changed files with 19 additions and 6 deletions
				
			
		
							
								
								
									
										29
									
								
								src/module-simple-protocol.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								src/module-simple-protocol.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,29 @@
 | 
			
		|||
#include <assert.h>
 | 
			
		||||
#include <arpa/inet.h>
 | 
			
		||||
 | 
			
		||||
#include "module.h"
 | 
			
		||||
#include "socket-server.h"
 | 
			
		||||
#include "protocol-simple.h"
 | 
			
		||||
 | 
			
		||||
int module_init(struct core *c, struct module*m) {
 | 
			
		||||
    struct socket_server *s;
 | 
			
		||||
    assert(c && m);
 | 
			
		||||
 | 
			
		||||
#ifdef USE_TCP_SOCKETS
 | 
			
		||||
    if (!(s = socket_server_new_ipv4(c->mainloop, INADDR_LOOPBACK, 4712)))
 | 
			
		||||
        return -1;
 | 
			
		||||
#else
 | 
			
		||||
    if (!(s = socket_server_new_unix(c->mainloop, "/tmp/polypsimple")))
 | 
			
		||||
        return -1;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    m->userdata = protocol_simple_new(c, s, PROTOCOL_SIMPLE_PLAYBACK);
 | 
			
		||||
    assert(m->userdata);
 | 
			
		||||
    return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void module_done(struct core *c, struct module*m) {
 | 
			
		||||
    assert(c && m);
 | 
			
		||||
 | 
			
		||||
    protocol_simple_free(m->userdata);
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue