blob: 410d583af41900e37cd09cad0acfd5ab6684338d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014-2015 IBM Corp.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Allan Stockdill-Mander
* Seth Hoenig
*******************************************************************************/
package gateway
import (
"net"
)
type Gateway interface {
Start()
Port() int
OnPacket(int, []byte, *net.UDPConn, *net.UDPAddr)
}