1 // 2 // Copyright (c) 2010-2018 Antmicro 3 // Copyright (c) 2011-2015 Realtime Embedded 4 // 5 // This file is licensed under the MIT License. 6 // Full license text is available in 'licenses/MIT.txt'. 7 // 8 9 namespace Antmicro.Renode.Network 10 { 11 public enum IPProtocolType : byte 12 { 13 HOPOPTS = 0, 14 ICMP = 1, 15 IGMP = 2, 16 GGP = 3, 17 IPV4 = 4, 18 ST = 5, 19 TCP = 6, 20 EGP = 8, 21 PUP = 12, 22 UDP = 17, 23 IDP = 22, 24 TP = 29, 25 IPV6 = 41, 26 ROUTING = 43, 27 FRAGMENT = 44, 28 RSVP = 46, 29 GRE = 47, 30 ESP = 50, 31 AH = 51, 32 ICMPV6 = 58, 33 NONE = 59, 34 DSTOPTS = 60, 35 MTP = 92, 36 ENCAP = 98, 37 PIM = 103, 38 COMP = 108 39 } 40 } 41