2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2019-03-11 08:43:45 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-02-15 21:27:42 -03:00
|
|
|
namespace Kernel {
|
2020-04-09 08:31:05 -03:00
|
|
|
class NetworkTask {
|
|
|
|
|
public:
|
|
|
|
|
static void spawn();
|
2021-04-30 14:18:23 -03:00
|
|
|
static bool is_current();
|
2020-04-09 08:31:05 -03:00
|
|
|
};
|
2020-02-15 21:27:42 -03:00
|
|
|
}
|