func()

in lib/server.go [38:48]


func (s *Server) ListenAndServe() error {
	if !s.server {
		s.startUpdatingServerList()
	}

	glog.Infof("Started server, processing DHCP requests...")

	for {
		s.handleConnection()
	}
}