mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:02:45 +00:00 
			
		
		
		
	 5f1c98e576
			
		
	
	
		5f1c98e576
		
	
	
	
	
		
			
			Previously there was a mix of returning plain strings and returning explicit string views using `operator ""sv`. This change switches them all to standardized on `operator ""sv` as it avoids a call to strlen.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			730 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			730 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <Kernel/Net/NetworkAdapter.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class LoopbackAdapter final : public NetworkAdapter {
 | |
|     AK_MAKE_ETERNAL
 | |
| 
 | |
| private:
 | |
|     LoopbackAdapter(NonnullOwnPtr<KString>);
 | |
| 
 | |
| public:
 | |
|     static RefPtr<LoopbackAdapter> try_create();
 | |
|     virtual ~LoopbackAdapter() override;
 | |
| 
 | |
|     virtual void send_raw(ReadonlyBytes) override;
 | |
|     virtual StringView class_name() const override { return "LoopbackAdapter"sv; }
 | |
|     virtual bool link_up() override { return true; }
 | |
|     virtual bool link_full_duplex() override { return true; }
 | |
|     virtual int link_speed() override { return 1000; }
 | |
| };
 | |
| 
 | |
| }
 |