]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/frontends/android/app/src/main/java/org/strongswan/android/logic/imc/collectors/Protocol.java
android: Provide a fallback for sigwaitinfo()
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / java / org / strongswan / android / logic / imc / collectors / Protocol.java
1 /*
2 * Copyright (C) 2013 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16 package org.strongswan.android.logic.imc.collectors;
17
18 public enum Protocol
19 {
20 TCP((byte)6, "tcp", "tcp6"),
21 UDP((byte)17, "udp", "udp6");
22
23 private final byte mValue;
24 private String[] mNames;
25
26 private Protocol(byte value, String... names)
27 {
28 mValue = value;
29 mNames = names;
30 }
31
32 /**
33 * Get the numeric value of the protocol.
34 * @return numeric value
35 */
36 public byte getValue()
37 {
38 return mValue;
39 }
40
41 /**
42 * Get the protocol from the given protocol name, if found.
43 * @param name protocol name (e.g. "udp" or "tcp")
44 * @return enum entry or null
45 */
46 public static Protocol fromName(String name)
47 {
48 for (Protocol protocol : Protocol.values())
49 {
50 for (String keyword : protocol.mNames)
51 {
52 if (keyword.equalsIgnoreCase(name))
53 {
54 return protocol;
55 }
56 }
57 }
58 return null;
59 }
60 }