mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/Types.h>
 | |
| 
 | |
| struct EtherType {
 | |
|     enum : u16 {
 | |
|         ARP = 0x0806,
 | |
|         IPv4 = 0x0800,
 | |
|         IPv6 = 0x86DD,
 | |
|     };
 | |
| };
 | 
