J Reece Wilson
1e4082c02f
[+] NetSocketBind::uDefaultInputStreamSize [+] NetDatagramBind::uDefaultInputStreamSize
22 lines
522 B
C++
22 lines
522 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuNetEndpoint.hpp
|
|
Date: 2022-8-16
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::Net
|
|
{
|
|
AuUInt8 OptimizeEndpoint(NetEndpoint &ep);
|
|
|
|
void DeoptimizeEndpoint(NetEndpoint &ep);
|
|
|
|
AuUInt TransportToPlatformType(const NetEndpoint &ep);
|
|
AuUInt TransportToPlatformType(ETransportProtocol protocol);
|
|
|
|
AuUInt IPToDomain(const NetEndpoint &ep);
|
|
|
|
AuUInt8 EndpointToLength(const NetEndpoint &ep);
|
|
} |