Whitespace removal - client-dtls.c

pull/55/head
abrahamsonn 2017-06-02 10:50:12 -06:00 committed by GitHub
parent a71529ffd6
commit 1a1474af9e
1 changed files with 9 additions and 9 deletions

View File

@ -41,15 +41,15 @@
int main (int argc, char** argv)
{
int n = 0;
int sockfd = 0;
struct sockaddr_in servAddr;
WOLFSSL* ssl = 0;
WOLFSSL_CTX* ctx = 0;
char cert_array[] = "../certs/ca-cert.pem";
char* certs = cert_array;
char sendLine[MAXLINE];
char recvLine[MAXLINE - 1];
int n = 0;
int sockfd = 0;
struct sockaddr_in servAddr;
WOLFSSL* ssl = 0;
WOLFSSL_CTX* ctx = 0;
char cert_array[] = "../certs/ca-cert.pem";
char* certs = cert_array;
char sendLine[MAXLINE];
char recvLine[MAXLINE - 1];
/* Program argument checking */
if (argc != 2) {