~exarkun/pyopenssl/working-windows-build

« back to all changes in this revision

Viewing changes to src/ssl/context.c

  • Committer: Jean-Paul Calderone
  • Date: 2008-03-21 22:31:12 UTC
  • Revision ID: exarkun@boson-20080321223112-sqe5mpueheeap6bj
Put my copyright on everything I've changed so far, put a more reasonable version number on version.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * context.c
3
3
 *
4
4
 * Copyright (C) AB Strakt 2001, All rights reserved
 
5
 * Copyright (C) Jean-Paul Calderone 2008, All rights reserved
5
6
 *
6
7
 * SSL Context objects and their methods.
7
8
 * See the file RATIONALE for a short explanation of why this module was written.
10
11
 */
11
12
#include <Python.h>
12
13
 
13
 
 
14
 
 
15
14
#ifndef MS_WINDOWS
16
15
#  include <sys/socket.h>
17
16
#  include <netinet/in.h>
26
25
#define SSL_MODULE
27
26
#include "ssl.h"
28
27
 
29
 
static char *CVSid = "@(#) $Id: context.c,v 1.17 2004/08/06 10:21:56 martin Exp $";
30
 
 
31
28
/*
32
29
 * CALLBACKS
33
30
 *