Skip to content

Commit

Permalink
#70 Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
szysas committed Nov 7, 2023
1 parent b3878ac commit f956a98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import org.slf4j.LoggerFactory;

public class SocketClientTransport extends BlockingCoapTransport implements CoapTcpTransport {
private static final Logger LOGGER = LoggerFactory.getLogger(SSLSocketClientTransport.class);
private static final Logger LOGGER = LoggerFactory.getLogger(SocketClientTransport.class);

protected final InetSocketAddress destination;
protected OutputStream outputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


public class SingleConnectionSocketServerTransport extends BlockingCoapTransport implements CoapTcpTransport {
private static final Logger LOGGER = LoggerFactory.getLogger(SingleConnectionSSLSocketServerTransport.class);
private static final Logger LOGGER = LoggerFactory.getLogger(SingleConnectionSocketServerTransport.class);

private final ExecutorService executor = Executors.newSingleThreadExecutor();
final ServerSocket serverSocket;
Expand All @@ -65,7 +65,7 @@ public CompletableFuture<CoapPacket> receive() {

private void connect() {
try {
LOGGER.debug("SSLSocketServer is listening on " + serverSocket.getLocalSocketAddress());
LOGGER.debug("ServerSocket is listening on " + serverSocket.getLocalSocketAddress());
socket = serverSocket.accept();

//connected with client
Expand Down

0 comments on commit f956a98

Please sign in to comment.