nl:: Inet:: UDPEndPoint
#include <src/inet/UDPEndPoint.h>
이 클래스의 객체는 UDP 전송 엔드포인트를 나타냅니다.
요약
Nest Inet 레이어는 UDP 전송 엔드포인트 (Linux 및 BSD 파생 시스템의 SOCK_DGRAM 소켓) 또는 LwIP UDP 프로토콜 제어 블록과 상호작용하는 메서드를 캡슐화합니다. 시스템이 적절하게 구성되어 있기 때문입니다.
상속
상속 출처: nl::Inet::IPEndPointBasis
공개 함수 |
|
---|---|
Bind(IPAddressType addrType, IPAddress addr, uint16_t port, InterfaceId intfId)
|
엔드포인트를 인터페이스 IP 주소에 바인딩합니다.
|
BindInterface(IPAddressType addrType, InterfaceId intf)
|
엔드포인트를 네트워크 인터페이스에 바인딩
|
Close(void)
|
void
엔드포인트를 닫습니다.
|
Free(void)
|
void
엔드포인트를 닫고 메모리를 재활용합니다.
|
GetBoundInterface(void)
|
InterfaceId
이 엔드포인트에 바인드된 인터페이스를 가져옵니다.
|
GetBoundPort(void)
|
uint16_t
|
Listen(void)
|
UDP 메시지를 수신할 엔드포인트를 준비합니다.
|
SendMsg(const IPPacketInfo *pktInfo, Weave::System::PacketBuffer *msg, uint16_t sendFlags)
|
지정된 대상으로 UDP 메시지를 보냅니다.
|
SendTo(IPAddress addr, uint16_t port, Weave::System::PacketBuffer *msg, uint16_t sendFlags)
|
SendTo(addr, port, INET_NULL_INTERFACEID, msg, sendFlags) 의 동의어입니다. |
SendTo(IPAddress addr, uint16_t port, InterfaceId intfId, Weave::System::PacketBuffer *msg, uint16_t sendFlags)
|
지정된 목적지 주소로 UDP 메시지를 보냅니다.
|
공개 함수
바인딩
INET_ERROR Bind( IPAddressType addrType, IPAddress addr, uint16_t port, InterfaceId intfId )
엔드포인트를 인터페이스 IP 주소에 바인딩합니다.
엔드포인트를 지정된 네트워크 인터페이스 IP 주소에 바인딩합니다.
세부정보 | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
매개변수 |
|
||||||||||||||
반환 값 |
|
LwIP에서는 이미 LwIP 스택 잠금을 획득한 상태에서 이 메서드를 호출하면 안 됩니다.
BindInterface
INET_ERROR BindInterface( IPAddressType addrType, InterfaceId intf )
엔드포인트를 네트워크 인터페이스에 바인딩
엔드포인트를 지정된 네트워크 인터페이스 IP 주소에 바인딩합니다.
세부정보 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
매개변수 |
|
||||||||||
반환 값 |
|
LwIP에서는 이미 LwIP 스택 잠금을 획득한 상태에서 이 메서드를 호출하면 안 됩니다.
닫기
void Close( void )
엔드포인트를 닫습니다.
mState != kState_Closed
이면 엔드포인트를 닫고 통신 이벤트에 사용할 수 있는 엔드포인트 집합에서 삭제합니다.
LwIP 시스템에서는 이미 획득한 LwIP 스택 잠금으로 이 메서드를 호출하면 안 됩니다.
무료
void Free( void )
엔드포인트를 닫고 메모리를 재활용합니다.
Close
메서드를 호출한 다음 InetLayerBasis::Release
메서드를 호출하여 객체를 메모리 풀에 반환합니다.
LwIP 시스템에서는 이미 획득한 LwIP 스택 잠금으로 이 메서드를 호출하면 안 됩니다.
GetBoundInterface
InterfaceId GetBoundInterface( void )
이 엔드포인트에 바인드된 인터페이스를 가져옵니다.
세부정보 | |
---|---|
반환 |
InterfaceId 바인드된 인터페이스 ID입니다.
|
GetBoundPort
uint16_t GetBoundPort( void )
듣기
INET_ERROR Listen( void )
UDP 메시지를 수신할 엔드포인트를 준비합니다.
State
이 이미 kState_Listening
이면 작업이 실행되지 않습니다. 그렇지 않으면 플랫폼의 시맨틱스에 따라 mState
가 kState_Listening
로 설정되고 엔드포인트가 UDP 메시지를 수신할 준비가 됩니다.
세부정보 | |||||
---|---|---|---|---|---|
반환 값 |
|
LwIP에서는 LwIP 스택 잠금이 이미 획득한 상태로 이 메서드를 호출하면 안 됩니다.
SendMsg
INET_ERROR SendMsg( const IPPacketInfo *pktInfo, Weave::System::PacketBuffer *msg, uint16_t sendFlags )
지정된 대상으로 UDP 메시지를 보냅니다.
Send the UDP message in \c msg to the destination address and port given in \c pktInfo. If \c pktInfo contains an interface id, the message will be sent over the specified interface. If \c pktInfo contains a source address, the given address will be used as the source of the UDP message. Where (sendFlags & kSendFlag_RetainBuffer) != 0, calls Weave::System::PacketBuffer::Free on behalf of the caller, otherwise this method deep-copies \c msg into a fresh object, and queues that for transmission, leaving the original \c msg available after return.
세부정보 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
매개변수 |
|
||||||||||||
반환 값 |
|
SendTo
INET_ERROR SendTo( IPAddress addr, uint16_t port, Weave::System::PacketBuffer *msg, uint16_t sendFlags )
SendTo(addr, port, INET_NULL_INTERFACEID, msg, sendFlags)
의 동의어입니다.
SendTo
INET_ERROR SendTo( IPAddress addr, uint16_t port, InterfaceId intfId, Weave::System::PacketBuffer *msg, uint16_t sendFlags )
지정된 목적지 주소로 UDP 메시지를 보냅니다.
If possible, then this method sends the UDP message \c msg to the destination \c addr (with \c intfId used as the scope identifier for IPv6 link-local destinations) and \c port with the transmit option flags encoded in \c sendFlags. Where (sendFlags & kSendFlag_RetainBuffer) != 0, calls Weave::System::PacketBuffer::Free on behalf of the caller, otherwise this method deep-copies \c msg into a fresh object, and queues that for transmission, leaving the original \c msg available after return.
세부정보 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
매개변수 |
|
||||||||||||
반환 값 |
|