File: l2tpd_nil.go

package info (click to toggle)
golang-github-katalix-go-l2tp 0.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 632 kB
  • sloc: ansic: 127; sh: 10; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 535 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package main

import (
	"github.com/go-kit/kit/log"
	"github.com/katalix/go-l2tp/pppoe"
)

var _ l2tpdRunner = (*nilL2tpdRunner)(nil)
var _ l2tpd = (*nilL2tpd)(nil)

type nilL2tpdRunner struct {
}

type nilL2tpd struct {
}

func (runner *nilL2tpdRunner) spawn(sessionID pppoe.PPPoESessionID,
	ifName string,
	peerMAC [6]byte,
	lnsIPAddr string,
	logger log.Logger,
	eventHandler l2tpEventHandler) (l2tpd, error) {
	return &nilL2tpd{}, nil
}

func (l2tpd *nilL2tpd) wait() error {
	return nil
}

func (l2tpd *nilL2tpd) terminate() {

}