mirror of
https://github.com/coredhcp/coredhcp.git
synced 2025-11-06 11:01:07 +01:00
Added license headers
Signed-off-by: Andrea Barberio <insomniac@slackware.it>
This commit is contained in:
parent
79f78359c2
commit
4861d2ce08
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package coredhcp
|
package coredhcp
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package handler
|
package handler
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package logger
|
package logger
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package dns
|
package dns
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package dns
|
package dns
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package example
|
package example
|
||||||
|
|
||||||
// This is an example plugin that inspects a packet and prints it out. The code
|
// This is an example plugin that inspects a packet and prints it out. The code
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
// Package file enables static mapping of MAC <--> IP addresses.
|
// Package file enables static mapping of MAC <--> IP addresses.
|
||||||
// The mapping is stored in a text file, where each mapping is described by one line containing
|
// The mapping is stored in a text file, where each mapping is described by one line containing
|
||||||
// two fields separated by spaces: MAC address, and IP address. For example:
|
// two fields separated by spaces: MAC address, and IP address. For example:
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package netmask
|
package netmask
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package plugins
|
package plugins
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package rangeplugin
|
package rangeplugin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package router
|
package router
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package serverid
|
package serverid
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2018-present the CoreDHCP Authors. All rights reserved
|
||||||
|
// This source code is licensed under the MIT license found in the
|
||||||
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
package serverid
|
package serverid
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user