blob: 4a4649bb76dba5371d0abbd37ec8373a853299e7 [file] [log] [blame]
Darin Petkove6ca3202012-10-19 14:49:56 +02001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_SHIMS_C_PPP_H_
6#define SHILL_SHIMS_C_PPP_H_
7
8#if defined(__cplusplus)
9extern "C" {
10#endif
11
12void PPPInit();
13int PPPHasSecret();
14int PPPGetSecret(char *username, char *password);
15void PPPOnConnect(const char *ifname);
16void PPPOnDisconnect();
17void PPPOnExit(void *data, int arg);
18
19#if defined(__cplusplus)
20}
21#endif
22
23#endif // SHILL_SHIMS_C_PPP_H_