Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
ICMP.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 namespace V4 {
8
9 /*
10 ********************************************************************************
11 **************************** TTLExpiredException *******************************
12 ********************************************************************************
13 */
14 inline InternetAddress TTLExpiredException::GetUnreachedIP () const
15 {
16 return fUnreachedIP_;
17 }
18
19 /*
20 ********************************************************************************
21 ************************ DestinationUnreachableException ***********************
22 ********************************************************************************
23 */
24 inline uint8_t DestinationUnreachableException::GetCode () const
25 {
26 return fCode_;
27 }
28 inline InternetAddress DestinationUnreachableException::GetUnreachedIP () const
29 {
30 return fUnreachedIP_;
31 }
32
33 /*
34 ********************************************************************************
35 ***************************** UnknownICMPPacket ********************************
36 ********************************************************************************
37 */
38 inline ICMP_PacketTypes UnknownICMPPacket::GetType () const
39 {
40 return fType_;
41 }
42 }
43
44}