summaryrefslogtreecommitdiff
path: root/src/nspawn/nspawn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nspawn/nspawn.h')
-rw-r--r--src/nspawn/nspawn.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/nspawn/nspawn.h b/src/nspawn/nspawn.h
index 1e2c26b65c..33eaa7e9d1 100644
--- a/src/nspawn/nspawn.h
+++ b/src/nspawn/nspawn.h
@@ -20,18 +20,3 @@
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-
-#include <inttypes.h>
-#include <stdbool.h>
-
-#include "list.h"
-
-typedef struct ExposePort {
- int protocol;
- uint16_t host_port;
- uint16_t container_port;
- LIST_FIELDS(struct ExposePort, ports);
-} ExposePort;
-
-void expose_port_free_all(ExposePort *p);
-int expose_port_parse(ExposePort **l, const char *s);