~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to modules/afsocket/afsocket.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-05-26 09:06:21 UTC
  • mfrom: (1.3.11)
  • Revision ID: package-import@ubuntu.com-20130526090621-8z2s0oi21eoljb9x
Tags: 3.3.9-1
* New upstream release.
* Include missed ivykis header (closes: #708793).

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "driver.h"
28
28
#include "logreader.h"
29
29
#include "logwriter.h"
30
 
#if ENABLE_SSL
 
30
#if BUILD_WITH_SSL
31
31
#include "tlscontext.h"
32
32
#endif
33
33
 
69
69
  struct iv_fd listen_fd;
70
70
  gint fd;
71
71
  LogReaderOptions reader_options;
72
 
#if ENABLE_SSL
 
72
#if BUILD_WITH_SSL
73
73
  TLSContext *tls_context;
74
74
#endif
75
75
  gint address_family;
106
106
void afsocket_sd_set_transport(LogDriver *s, const gchar *transport);
107
107
void afsocket_sd_set_keep_alive(LogDriver *self, gint enable);
108
108
void afsocket_sd_set_max_connections(LogDriver *self, gint max_connections);
109
 
#if ENABLE_SSL
 
109
#if BUILD_WITH_SSL
110
110
void afsocket_sd_set_tls_context(LogDriver *s, TLSContext *tls_context);
111
111
#else
112
112
#define afsocket_sd_set_tls_context(s, t)
140
140
  gint fd;
141
141
  LogPipe *writer;
142
142
  LogWriterOptions writer_options;
143
 
#if ENABLE_SSL
 
143
#if BUILD_WITH_SSL
144
144
  TLSContext *tls_context;
145
145
#endif
146
146
  gint address_family;
173
173
};
174
174
 
175
175
 
176
 
#if ENABLE_SSL
 
176
#if BUILD_WITH_SSL
177
177
void afsocket_dd_set_tls_context(LogDriver *s, TLSContext *tls_context);
178
178
#else
179
179
#define afsocket_dd_set_tls_context(s, t)