-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add get_hostname
to esp-idf
#3934
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @JohnTitor (or someone else) some time within the next two weeks. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
There is currently not a corresponding semver symbol check file (that I can find) for the ESP - am I looking in the wrong place? |
@rustbot label stable-nominated |
This comment was marked as outdated.
This comment was marked as outdated.
There isn't one, but feel free to start one. It won't get checked against anything for now but we can add it in the future.
Goes in the PR description :) Could you please add a link to the relevant headers providing these in the PR description? @rustbot author (just comment |
get_hostname
and _SC_HOST_NAME_MAX
to esp-idfget_hostname
to esp-idf
I'm having some trouble finding concrete definitions of |
@rustbot review |
I think this should be good, but it needs a rebase and to be marked ready for review. Unless you were waiting for confirmation on @rustbot author |
|
@rustbot review |
936b5d2
to
e7d4663
Compare
Good idea, done in #4026 |
Fixes: rust-lang#3934 (comment) (backport <rust-lang#4026>) (cherry picked from commit a88c0d3)
Add `get_hostname` to esp-idf (backport <rust-lang#3934>) (cherry picked from commit 600e1d1)
This PR adds:
gethostname
(found here in the ESP newlib fork, and here inesp-idf-svc
)_SC_HOST_NAME_MAX
(found here)to
espidf
.Closes #3748.