File: conn.c

package info (click to toggle)
httperf 0.8-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 736 kB
  • ctags: 816
  • sloc: ansic: 6,665; sh: 2,473; makefile: 228
file content (91 lines) | stat: -rw-r--r-- 2,248 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
    httperf -- a tool for measuring web server performance
    Copyright (C) 2000  Hewlett-Packard Company
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>

    This file is part of httperf, a web server performance measurment
    tool.

    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 the Free Software Foundation; either version 2 of the
    License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA
*/

#include "config.h"

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <httperf.h>
#include <conn.h>

void
conn_init (Conn *conn)
{
  conn->hostname = param.server;
  conn->hostname_len = strlen (param.server);
  conn->port = param.port;
  conn->sd = -1;
  conn->myport = -1;
  conn->line.iov_base = conn->line_buf;
  if (param.server_name)
    {
      conn->fqdname = param.server_name;
      conn->fqdname_len = strlen (param.server_name);
    }
  else
    {
      conn->fqdname = conn->hostname;
      conn->fqdname_len = conn->hostname_len;
    }

#ifdef HAVE_SSL
  if (param.use_ssl)
    {
      conn->ssl = SSL_new (ssl_ctx);
      if (!conn->ssl)
	{
	  ERR_print_errors_fp (stderr);
	  exit (-1);
	}

      if (param.ssl_cipher_list)
	{
	  /* set order of ciphers  */
	  int ssl_err = SSL_set_cipher_list (conn->ssl, param.ssl_cipher_list);

	  if (DBG > 2)
	    fprintf (stderr, "core_ssl_connect: set_cipher_list returned %d\n",
		     ssl_err);
	}
    }
#endif
}

void
conn_deinit (Conn *conn)
{
  assert (conn->sd < 0 && conn->state != S_FREE);
  assert (!conn->sendq);
  assert (!conn->recvq);
  assert (!conn->watchdog);
  conn->state = S_FREE;

#ifdef HAVE_SSL
  if (param.use_ssl)
    SSL_free (conn->ssl);
#endif
}