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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package config
import (
"context"
"os"
"os/signal"
"syscall"
"github.com/osrg/gobgp/pkg/server"
)
// ExampleUpdateConfig shows how InitialConfig can be used without UpdateConfig
func ExampleInitialConfig() {
bgpServer := server.NewBgpServer()
go bgpServer.Serve()
initialConfig, err := ReadConfigFile("gobgp.conf", "toml")
if err != nil {
// Handle error
return
}
isGracefulRestart := true
_, err = InitialConfig(context.Background(), bgpServer, initialConfig, isGracefulRestart)
if err != nil {
// Handle error
return
}
}
// ExampleUpdateConfig shows how UpdateConfig is used in conjuction with
// InitialConfig.
func ExampleUpdateConfig() {
bgpServer := server.NewBgpServer()
go bgpServer.Serve()
initialConfig, err := ReadConfigFile("gobgp.conf", "toml")
if err != nil {
// Handle error
return
}
isGracefulRestart := true
currentConfig, err := InitialConfig(context.Background(), bgpServer, initialConfig, isGracefulRestart)
if err != nil {
// Handle error
return
}
sigCh := make(chan os.Signal, 1)
signal.Notify(sigCh, syscall.SIGHUP)
for range sigCh {
newConfig, err := ReadConfigFile("gobgp.conf", "toml")
if err != nil {
// Handle error
continue
}
currentConfig, err = UpdateConfig(context.Background(), bgpServer, currentConfig, newConfig)
if err != nil {
// Handle error
continue
}
}
}
|