~ubuntu-branches/ubuntu/oneiric/wpasupplicant/oneiric

« back to all changes in this revision

Viewing changes to src/eap_server/eap_sim_db.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-11-22 09:43:43 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122094343-qgsxaojvmswfri77
Tags: 0.7.3-0ubuntu1
* Get wpasupplicant 0.7.3 from Debian's SVN. Leaving 0.7.3-1 as unreleased
  for now.
* Build-Depend on debhelper 8, since the packaging from Debian uses compat 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#ifndef EAP_SIM_DB_H
16
16
#define EAP_SIM_DB_H
17
17
 
18
 
#ifdef EAP_SIM
19
 
 
20
18
#include "eap_common/eap_sim_common.h"
21
19
 
22
20
/* Identity prefixes */
90
88
                             size_t identity_len, const u8 *auts,
91
89
                             const u8 *_rand);
92
90
 
93
 
#else /* EAP_SIM */
94
 
static inline void *
95
 
eap_sim_db_init(const char *config,
96
 
                void (*get_complete_cb)(void *ctx, void *session_ctx),
97
 
                void *ctx)
98
 
{
99
 
        return (void *) 1;
100
 
}
101
 
 
102
 
static inline void eap_sim_db_deinit(void *priv)
103
 
{
104
 
}
105
 
#endif /* EAP_SIM */
106
 
 
107
91
#endif /* EAP_SIM_DB_H */