blob: 3af13b9a11ed9638a1a6ebc001eeb83656a6b669 [file] [log] [blame]
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07001/*
2 * Hotspot 2.0 client - Web browser
3 * Copyright (c) 2013, Qualcomm Atheros, Inc.
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#ifndef BROWSER_H
10#define BROWSER_H
11
12#ifdef CONFIG_NO_BROWSER
Hai Shalomfdcde762020-04-02 11:19:20 -070013static inline int hs20_web_browser(const char *url, int ignore_tls)
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -070014{
15 return -1;
16}
17#else /* CONFIG_NO_BROWSER */
Hai Shalomfdcde762020-04-02 11:19:20 -070018int hs20_web_browser(const char *url, int ignore_tls);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -070019#endif /* CONFIG_NO_BROWSER */
20
21#endif /* BROWSER_H */