Home | History | Annotate | Download | only in shims

Lines Matching defs:PPP

37 #include "shill/shims/ppp.h"
61 static base::LazyInstance<PPP> g_ppp = LAZY_INSTANCE_INITIALIZER;
63 PPP::PPP() : running_(false) {}
65 PPP::~PPP() {}
68 PPP* PPP::GetInstance() {
72 void PPP::Init() {
79 LOG(INFO) << "PPP started.";
82 bool PPP::GetSecret(string* username, string* password) {
92 void PPP::OnAuthenticateStart() {
101 void PPP::OnAuthenticateDone() {
110 void PPP::OnConnect(const string& ifname) {
134 // Really an L2TP/IPSec option rather than a PPP one. But oh well.
143 void PPP::OnDisconnect() {
152 bool PPP::CreateProxy() {
172 void PPP::DestroyProxy() {
181 string PPP::ConvertIPToText(const void* addr) {