MCPcopy Create free account
hub / github.com/TigerVNC/tigervnc / GetEnabledExtSecTypes

Method GetEnabledExtSecTypes

java/com/tigervnc/rfb/Security.java:109–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

107 }
108
109 public final List<Integer> GetEnabledExtSecTypes()
110 {
111 List<Integer> result = new ArrayList<Integer>();
112
113 for (Iterator<Integer> i = enabledSecTypes.iterator(); i.hasNext(); ) {
114 int refType = (Integer)i.next();
115 if (refType != secTypeVeNCrypt) /* Do not include VeNCrypt to avoid loops */
116 result.add(refType);
117 }
118
119 return (result);
120 }
121
122 public final void EnableSecType(int secType)
123 {

Callers 2

loadOptionsMethod · 0.95
processMsgMethod · 0.45

Calls 2

addMethod · 0.65
nextMethod · 0.45

Tested by

no test coverage detected