mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
doc: switch discussion forum to github
Freenode is gone (replaced by Libera.chat), but IRC was unused anyways. Fixes: https://github.com/libuv/libuv/issues/3157 Fixes: https://github.com/libuv/libuv/issues/3208 PR-URL: https://github.com/libuv/libuv/pull/3214 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
parent
592cd40af8
commit
4a27d87a69
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@ -2,7 +2,7 @@
|
|||||||
If you want to report a bug, you are in the right place!
|
If you want to report a bug, you are in the right place!
|
||||||
|
|
||||||
If you need help or have a question, go here:
|
If you need help or have a question, go here:
|
||||||
https://github.com/libuv/help/issues/new
|
https://github.com/libuv/libuv/discussions
|
||||||
|
|
||||||
If you are reporting a libuv test failure, please ensure that you are not
|
If you are reporting a libuv test failure, please ensure that you are not
|
||||||
running the test as root.
|
running the test as root.
|
||||||
|
@ -23,11 +23,11 @@ The stable branch is effectively frozen; patches that change the libuv
|
|||||||
API/ABI or affect the run-time behavior of applications get rejected.
|
API/ABI or affect the run-time behavior of applications get rejected.
|
||||||
|
|
||||||
In case of doubt, open an issue in the [issue tracker][], post your question
|
In case of doubt, open an issue in the [issue tracker][], post your question
|
||||||
to the [libuv mailing list], or contact one of [project maintainers][] on [IRC][].
|
to the [libuv discussions forum], or message the [libuv mailing list].
|
||||||
|
|
||||||
Especially do so if you plan to work on something big. Nothing is more
|
Especially do so if you plan to work on something big. Nothing is more
|
||||||
frustrating than seeing your hard work go to waste because your vision
|
frustrating than seeing your hard work go to waste because your vision does not
|
||||||
does not align with that of a project maintainers.
|
align with that of the [project maintainers].
|
||||||
|
|
||||||
|
|
||||||
### BRANCH
|
### BRANCH
|
||||||
@ -166,6 +166,6 @@ not send out notifications when you add commits.
|
|||||||
|
|
||||||
[issue tracker]: https://github.com/libuv/libuv/issues
|
[issue tracker]: https://github.com/libuv/libuv/issues
|
||||||
[libuv mailing list]: http://groups.google.com/group/libuv
|
[libuv mailing list]: http://groups.google.com/group/libuv
|
||||||
[IRC]: http://webchat.freenode.net/?channels=libuv
|
[libuv discussions forum]: https://github.com/libuv/libuv/discussions
|
||||||
[Google C/C++ style guide]: https://google.github.io/styleguide/cppguide.html
|
[Google C/C++ style guide]: https://google.github.io/styleguide/cppguide.html
|
||||||
[project maintainers]: https://github.com/libuv/libuv/blob/master/MAINTAINERS.md
|
[project maintainers]: https://github.com/libuv/libuv/blob/master/MAINTAINERS.md
|
||||||
|
@ -48,9 +48,8 @@ The documentation is licensed under the CC BY 4.0 license. Check the [LICENSE-do
|
|||||||
|
|
||||||
## Community
|
## Community
|
||||||
|
|
||||||
* [Support](https://github.com/libuv/help)
|
* [Support](https://github.com/libuv/libuv/discussions)
|
||||||
* [Mailing list](http://groups.google.com/group/libuv)
|
* [Mailing list](http://groups.google.com/group/libuv)
|
||||||
* [IRC chatroom (#libuv@irc.freenode.org)](http://webchat.freenode.net?channels=libuv&uio=d4)
|
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
|
@ -69,8 +69,8 @@ int main() {
|
|||||||
hints.ai_flags = 0;
|
hints.ai_flags = 0;
|
||||||
|
|
||||||
uv_getaddrinfo_t resolver;
|
uv_getaddrinfo_t resolver;
|
||||||
fprintf(stderr, "irc.freenode.net is... ");
|
fprintf(stderr, "irc.libera.chat is... ");
|
||||||
int r = uv_getaddrinfo(loop, &resolver, on_resolved, "irc.freenode.net", "6667", &hints);
|
int r = uv_getaddrinfo(loop, &resolver, on_resolved, "irc.libera.chat", "6667", &hints);
|
||||||
|
|
||||||
if (r) {
|
if (r) {
|
||||||
fprintf(stderr, "getaddrinfo call error %s\n", uv_err_name(r));
|
fprintf(stderr, "getaddrinfo call error %s\n", uv_err_name(r));
|
||||||
|
@ -193,7 +193,7 @@ Querying DNS
|
|||||||
libuv provides asynchronous DNS resolution. For this it provides its own
|
libuv provides asynchronous DNS resolution. For this it provides its own
|
||||||
``getaddrinfo`` replacement [#]_. In the callback you can
|
``getaddrinfo`` replacement [#]_. In the callback you can
|
||||||
perform normal socket operations on the retrieved addresses. Let's connect to
|
perform normal socket operations on the retrieved addresses. Let's connect to
|
||||||
Freenode to see an example of DNS resolution.
|
Libera.chat to see an example of DNS resolution.
|
||||||
|
|
||||||
.. rubric:: dns/main.c
|
.. rubric:: dns/main.c
|
||||||
.. literalinclude:: ../../code/dns/main.c
|
.. literalinclude:: ../../code/dns/main.c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user