Use -s to flag POSIX's "special built-in" utilities in builtins.def. Add a
[dragonfly.git] / contrib / wpa_supplicant-0.4.9 / tls_none.c
blob07fd879ec8c8d086da95e2edc7e8b55fba4ca714
1 /*
2 * WPA Supplicant / SSL/TLS interface functions for no TLS case
3 * Copyright (c) 2004, Jouni Malinen <jkmaline@cc.hut.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #include <stdlib.h>
16 #include <stdio.h>
18 #include "common.h"
19 #include "tls.h"
21 void * tls_init(const struct tls_config *conf)
23 return (void *) 1;
26 void tls_deinit(void *ssl_ctx)