blob: e9a19c5243c424793ac6b63d4af6364f7099c3aa [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_SHIMS_C_PPP_H_
#define SHILL_SHIMS_C_PPP_H_
#if defined(__cplusplus)
extern "C" {
#endif
void PPPInit();
int PPPHasSecret();
int PPPGetSecret(char *username, char *password);
void PPPOnAuthenticateStart();
void PPPOnAuthenticateDone();
void PPPOnConnect(const char *ifname);
void PPPOnDisconnect();
void PPPOnExit(void *data, int arg);
#if defined(__cplusplus)
}
#endif
#endif // SHILL_SHIMS_C_PPP_H_