mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
Kernel: Move networking related files into Kernel/Net/.
This commit is contained in:
parent
718bea73b3
commit
649c81a714
26 changed files with 61 additions and 63 deletions
68
Kernel/Net/TCPSocket.h
Normal file
68
Kernel/Net/TCPSocket.h
Normal file
|
@ -0,0 +1,68 @@
|
|||
#pragma once
|
||||
|
||||
#include <Kernel/Net/IPv4Socket.h>
|
||||
|
||||
class TCPSocket final : public IPv4Socket {
|
||||
public:
|
||||
static Retained<TCPSocket> create(int protocol);
|
||||
virtual ~TCPSocket() override;
|
||||
|
||||
enum class State {
|
||||
Disconnected,
|
||||
Connecting,
|
||||
Connected,
|
||||
Disconnecting,
|
||||
};
|
||||
|
||||
State state() const { return m_state; }
|
||||
void set_state(State state) { m_state = state; }
|
||||
|
||||
void set_ack_number(dword n) { m_ack_number = n; }
|
||||
void set_sequence_number(dword n) { m_sequence_number = n; }
|
||||
dword ack_number() const { return m_ack_number; }
|
||||
dword sequence_number() const { return m_sequence_number; }
|
||||
|
||||
void send_tcp_packet(word flags, const void* = nullptr, int = 0);
|
||||
|
||||
static Lockable<HashMap<word, TCPSocket*>>& sockets_by_port();
|
||||
static TCPSocketHandle from_port(word);
|
||||
|
||||
private:
|
||||
explicit TCPSocket(int protocol);
|
||||
|
||||
NetworkOrdered<word> compute_tcp_checksum(const IPv4Address& source, const IPv4Address& destination, const TCPPacket&, word payload_size);
|
||||
|
||||
virtual int protocol_receive(const ByteBuffer&, void* buffer, size_t buffer_size, int flags, sockaddr* addr, socklen_t* addr_length) override;
|
||||
virtual int protocol_send(const void*, int) override;
|
||||
virtual KResult protocol_connect() override;
|
||||
virtual int protocol_allocate_source_port() override;
|
||||
virtual bool protocol_is_disconnected() const override;
|
||||
|
||||
dword m_sequence_number { 0 };
|
||||
dword m_ack_number { 0 };
|
||||
State m_state { State::Disconnected };
|
||||
};
|
||||
|
||||
class TCPSocketHandle : public SocketHandle {
|
||||
public:
|
||||
TCPSocketHandle() { }
|
||||
|
||||
TCPSocketHandle(RetainPtr<TCPSocket>&& socket)
|
||||
: SocketHandle(move(socket))
|
||||
{
|
||||
}
|
||||
|
||||
TCPSocketHandle(TCPSocketHandle&& other)
|
||||
: SocketHandle(move(other))
|
||||
{
|
||||
}
|
||||
|
||||
TCPSocketHandle(const TCPSocketHandle&) = delete;
|
||||
TCPSocketHandle& operator=(const TCPSocketHandle&) = delete;
|
||||
|
||||
TCPSocket* operator->() { return &socket(); }
|
||||
const TCPSocket* operator->() const { return &socket(); }
|
||||
|
||||
TCPSocket& socket() { return static_cast<TCPSocket&>(SocketHandle::socket()); }
|
||||
const TCPSocket& socket() const { return static_cast<const TCPSocket&>(SocketHandle::socket()); }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue