blob: a14c52f5a421b83c4654c2b5a196a5ff24e53e47 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_FIRMWARE_GIGABOOT_SRC_NETIFC_H_
#define SRC_FIRMWARE_GIGABOOT_SRC_NETIFC_H_
#include <stdint.h>
// setup networking
int netifc_open(void);
// process inbound packet(s)
void netifc_poll(void);
// return nonzero if interface exists
int netifc_active(void);
// shut down networking
void netifc_close(void);
// set a timer to expire after ms milliseconds
void netifc_set_timer(uint32_t ms);
// returns true once the timer has expired
int netifc_timer_expired(void);
#endif // SRC_FIRMWARE_GIGABOOT_SRC_NETIFC_H_