55 */
66package se .uu .it .dtlsfuzzer .components .sul .core ;
77
8- import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .AbstractSul ;
9- import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .SulAdapter ;
10- import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .config .SulConfig ;
8+ import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .AbstractSUL ;
9+ import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .SULAdapter ;
10+ import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .config .SULConfig ;
1111import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .core .sulwrappers .DynamicPortProvider ;
1212import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .mapper .Mapper ;
1313import com .github .protocolfuzzing .protocolstatefuzzer .components .sul .mapper .config .MapperConfig ;
4242import se .uu .it .dtlsfuzzer .components .sul .mapper .symbols .outputs .TlsOutput ;
4343
4444/**
45- * Implementation of {@link AbstractSul } that works for both clients and servers.
45+ * Implementation of {@link AbstractSUL } that works for both clients and servers.
4646 *
4747 * @author robert, paul
4848 */
49- public class TlsSul implements AbstractSul <TlsInput , TlsOutput , TlsExecutionContext > {
49+ public class TlsSul implements AbstractSUL <TlsInput , TlsOutput , TlsExecutionContext > {
5050
5151 private static final Logger LOGGER = LogManager .getLogger ();
5252
@@ -93,7 +93,7 @@ public class TlsSul implements AbstractSul<TlsInput, TlsOutput, TlsExecutionCont
9393
9494 private CleanupTasks cleanupTasks ;
9595
96- private SulAdapter sulAdapter ;
96+ private SULAdapter sulAdapter ;
9797
9898 private DynamicPortProvider dynamicPortProvider ;
9999
@@ -132,7 +132,7 @@ public void run() {
132132 }
133133 }
134134
135- void setSulAdapter (SulAdapter sulAdapter ) {
135+ void setSulAdapter (SULAdapter sulAdapter ) {
136136 this .sulAdapter = sulAdapter ;
137137 }
138138
@@ -159,7 +159,7 @@ public void pre() {
159159 if (!sulConfig .isFuzzingClient ()) {
160160 OutboundConnection connection = state .getConfig ().getDefaultClientConnection ();
161161 if (dynamicPortProvider != null ) {
162- connection .setPort (dynamicPortProvider .getSulPort ());
162+ connection .setPort (dynamicPortProvider .getSULPort ());
163163 }
164164 transportHandler = new ClientUdpTransportHandler (connection );
165165 } else {
@@ -355,7 +355,7 @@ private void exportEffectiveSulConfig(Config config, String path) {
355355 }
356356
357357 @ Override
358- public SulConfig getSulConfig () {
358+ public SULConfig getSULConfig () {
359359 return sulConfig ;
360360 }
361361
@@ -380,7 +380,7 @@ public Mapper<TlsInput, TlsOutput, TlsExecutionContext> getMapper() {
380380 }
381381
382382 @ Override
383- public SulAdapter getSulAdapter () {
383+ public SULAdapter getSULAdapter () {
384384 return sulAdapter ;
385385 }
386386}
0 commit comments