blob: 3b1862a51801be00423735832b969b3d8e206d3e [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_