mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
781 B
34 lines
781 B
package core
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// VPoint is an single server in V2Ray system.
|
|
type VPoint struct {
|
|
config VConfig
|
|
connHandler ConnectionHandler
|
|
}
|
|
|
|
// NewVPoint returns a new VPoint server based on given configuration.
|
|
// The server is not started at this point.
|
|
func NewVPoint(config *VConfig) (*VPoint, error) {
|
|
var vpoint = new(VPoint)
|
|
vpoint.config = *config
|
|
return vpoint, nil
|
|
}
|
|
|
|
type ConnectionHandler interface {
|
|
Listen(port uint16) error
|
|
}
|
|
|
|
// Start starts the VPoint server, and return any error during the process.
|
|
// In the case of any errors, the state of the server is unpredicatable.
|
|
func (vp *VPoint) Start() error {
|
|
if vp.config.Port <= 0 {
|
|
return fmt.Errorf("Invalid port %d", vp.config.Port)
|
|
}
|
|
vp.connHandler.Listen(vp.config.Port)
|
|
return nil
|
|
}
|