mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			542 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			542 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Net;
 | |
| using System.Net.Sockets;
 | |
| 
 | |
| namespace MediaBrowser.Model.Net;
 | |
| 
 | |
| /// <summary>
 | |
| /// Implemented by components that can create specific socket configurations.
 | |
| /// </summary>
 | |
| public interface ISocketFactory
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Creates a new unicast socket using the specified local port number.
 | |
|     /// </summary>
 | |
|     /// <param name="localPort">The local port to bind to.</param>
 | |
|     /// <returns>A new unicast socket using the specified local port number.</returns>
 | |
|     Socket CreateUdpBroadcastSocket(int localPort);
 | |
| }
 |