X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Fconnection.c;h=fb854da4536937ae43f136ff6f418cbbaf776698;hb=HEAD;hp=2c70b7d4f082f8fa9de3b256685e91ec23be3fc9;hpb=61041fcbfedb13bacd16cd11a9bd0fb5446b7abb;p=tlsproxy%2Ftlsproxy.git diff --git a/src/connection.c b/src/connection.c index 2c70b7d..fb854da 100644 --- a/src/connection.c +++ b/src/connection.c @@ -1,7 +1,7 @@ /* * Handle connections. * - * Copyright (C) 2011-2013 Simon Ruderich + * Copyright (C) 2011-2014 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -102,9 +102,9 @@ void handle_connection(int client_socket) { int version_minor; /* x in HTTP/1.x */ int result; - /* client_x509_cred is used when talking to the client (acting as a TSL + /* client_x509_cred is used when talking to the client (acting as a TLS * server), server_x509_cred is used when talking to the server (acting as - * a TSL client). */ + * a TLS client). */ gnutls_certificate_credentials_t client_x509_cred, server_x509_cred; gnutls_session_t client_session, server_session;