Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2025-02-20 Thread via GitHub
xiaoxiang781216 closed pull request #15069: netdb:Add macro to control DNS using TCP transmission URL: https://github.com/apache/nuttx/pull/15069 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-10 Thread via GitHub
yamt commented on PR #15069: URL: https://github.com/apache/nuttx/pull/15069#issuecomment-2530804305 > > > When dns uses tcp for transmission, it is easy to exceed RECV_BUFFER_SIZE, causing resolution failure. Therefore a macro was added to limit whether this feature is enabled or not. >

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-09 Thread via GitHub
yjq91115 commented on PR #15069: URL: https://github.com/apache/nuttx/pull/15069#issuecomment-2530081511 > > When dns uses tcp for transmission, it is easy to exceed RECV_BUFFER_SIZE, causing resolution failure. Therefore a macro was added to limit whether this feature is enabled or not.

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-09 Thread via GitHub
yjq91115 commented on code in PR #15069: URL: https://github.com/apache/nuttx/pull/15069#discussion_r1877062041 ## libs/libc/netdb/Kconfig: ## @@ -237,6 +237,11 @@ config NETDB_DNSSERVER_IPv4ADDR Default DNS server IPv4 address in host byte order. Default value

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-09 Thread via GitHub
yamt commented on code in PR #15069: URL: https://github.com/apache/nuttx/pull/15069#discussion_r1875864049 ## libs/libc/netdb/Kconfig: ## @@ -237,6 +237,11 @@ config NETDB_DNSSERVER_IPv4ADDR Default DNS server IPv4 address in host byte order. Default value

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-09 Thread via GitHub
yjq91115 commented on code in PR #15069: URL: https://github.com/apache/nuttx/pull/15069#discussion_r1875842405 ## libs/libc/netdb/Kconfig: ## @@ -237,6 +237,11 @@ config NETDB_DNSSERVER_IPv4ADDR Default DNS server IPv4 address in host byte order. Default value

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-09 Thread via GitHub
yjq91115 commented on code in PR #15069: URL: https://github.com/apache/nuttx/pull/15069#discussion_r1875793960 ## libs/libc/netdb/Kconfig: ## @@ -237,6 +237,11 @@ config NETDB_DNSSERVER_IPv4ADDR Default DNS server IPv4 address in host byte order. Default value

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-06 Thread via GitHub
acassis commented on code in PR #15069: URL: https://github.com/apache/nuttx/pull/15069#discussion_r1873429050 ## libs/libc/netdb/Kconfig: ## @@ -237,6 +237,11 @@ config NETDB_DNSSERVER_IPv4ADDR Default DNS server IPv4 address in host byte order. Default value

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-06 Thread via GitHub
xiaoxiang781216 commented on code in PR #15069: URL: https://github.com/apache/nuttx/pull/15069#discussion_r1872966600 ## libs/libc/netdb/Kconfig: ## @@ -237,6 +237,11 @@ config NETDB_DNSSERVER_IPv4ADDR Default DNS server IPv4 address in host byte order. Default

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-05 Thread via GitHub
yjq91115 commented on PR #15069: URL: https://github.com/apache/nuttx/pull/15069#issuecomment-2522193604 > please remove Gerrit Change-ID's before submitting upstream. Done. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitH

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-05 Thread via GitHub
xiaoxiang781216 commented on PR #15069: URL: https://github.com/apache/nuttx/pull/15069#issuecomment-2522017588 please remove Gerrit Change-ID's before submitting upstream. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and u

Re: [PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-05 Thread via GitHub
nuttxpr commented on PR #15069: URL: https://github.com/apache/nuttx/pull/15069#issuecomment-2521941526 [**\[Experimental Bot, please feedback here\]**](https://github.com/search?q=repo%3Aapache%2Fnuttx+13552&type=issues) ## Does this PR meet the NuttX Requirements? **N

[PR] netdb:Add macro to control DNS using TCP transmission [nuttx]

2024-12-05 Thread via GitHub
yjq91115 opened a new pull request, #15069: URL: https://github.com/apache/nuttx/pull/15069 ## Summary When dns uses tcp for transmission, it is easy to exceed RECV_BUFFER_SIZE, causing resolution failure. Therefore a macro was added to limit whether this feature is enabled or not.