~ubuntu-branches/ubuntu/maverick/lua-sec/maverick

« back to all changes in this revision

Viewing changes to src/context.c

  • Committer: Bazaar Package Importer
  • Author(s): Enrico Tassi
  • Date: 2009-11-13 22:18:42 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091113221842-1l4hj1rattecvtu2
Tags: 0.4-3
build depend on liblua5.1-policy-dev >= 26 to specify linker flags
for statical linkage (Closes: #555567)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*--------------------------------------------------------------------------
2
 
 * LuaSec 0.3.3
 
2
 * LuaSec 0.4
3
3
 * Copyright (C) 2006-2009 Bruno Silvestre
4
4
 *
5
5
 *--------------------------------------------------------------------------*/
52
52
  {"no_query_mtu",                     SSL_OP_NO_QUERY_MTU},
53
53
  {"single_ecdh_use",                  SSL_OP_SINGLE_ECDH_USE},
54
54
#endif
 
55
  /* OpenSSL 0.9.8f and above */
 
56
#if defined(SSL_OP_NO_TICKET)
 
57
  {"no_ticket",                        SSL_OP_NO_TICKET},
 
58
#endif
55
59
  {NULL, 0L}
56
60
};
57
61