Skip to content

Commit 00d42c0

Browse files
authored
doc: switch discussion forum to github (libuv#3214)
Freenode is gone (replaced by Libera.chat), but IRC was unused anyways. Fixes: libuv#3157 Fixes: libuv#3208 PR-URL: libuv#3214 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 592cd40 commit 00d42c0

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

Diff for: .github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
If you want to report a bug, you are in the right place!
33
44
If you need help or have a question, go here:
5-
https://github.com/libuv/help/issues/new
5+
https://github.com/libuv/libuv/discussions
66
77
If you are reporting a libuv test failure, please ensure that you are not
88
running the test as root.

Diff for: CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ The stable branch is effectively frozen; patches that change the libuv
2323
API/ABI or affect the run-time behavior of applications get rejected.
2424

2525
In case of doubt, open an issue in the [issue tracker][], post your question
26-
to the [libuv mailing list], or contact one of [project maintainers][] on [IRC][].
26+
to the [libuv discussions forum], or message the [libuv mailing list].
2727

28-
Especially do so if you plan to work on something big. Nothing is more
29-
frustrating than seeing your hard work go to waste because your vision
30-
does not align with that of a project maintainers.
28+
Especially do so if you plan to work on something big. Nothing is more
29+
frustrating than seeing your hard work go to waste because your vision does not
30+
align with that of the [project maintainers].
3131

3232

3333
### BRANCH
@@ -166,6 +166,6 @@ not send out notifications when you add commits.
166166

167167
[issue tracker]: https://github.com/libuv/libuv/issues
168168
[libuv mailing list]: http://groups.google.com/group/libuv
169-
[IRC]: http://webchat.freenode.net/?channels=libuv
169+
[libuv discussions forum]: https://github.com/libuv/libuv/discussions
170170
[Google C/C++ style guide]: https://google.github.io/styleguide/cppguide.html
171171
[project maintainers]: https://github.com/libuv/libuv/blob/master/MAINTAINERS.md

Diff for: README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ The documentation is licensed under the CC BY 4.0 license. Check the [LICENSE-do
4848

4949
## Community
5050

51-
* [Support](https://github.com/libuv/help)
51+
* [Support](https://github.com/libuv/libuv/discussions)
5252
* [Mailing list](http://groups.google.com/group/libuv)
53-
* [IRC chatroom (#[email protected])](http://webchat.freenode.net?channels=libuv&uio=d4)
5453

5554
## Documentation
5655

Diff for: docs/code/dns/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ int main() {
6969
hints.ai_flags = 0;
7070

7171
uv_getaddrinfo_t resolver;
72-
fprintf(stderr, "irc.freenode.net is... ");
73-
int r = uv_getaddrinfo(loop, &resolver, on_resolved, "irc.freenode.net", "6667", &hints);
72+
fprintf(stderr, "irc.libera.chat is... ");
73+
int r = uv_getaddrinfo(loop, &resolver, on_resolved, "irc.libera.chat", "6667", &hints);
7474

7575
if (r) {
7676
fprintf(stderr, "getaddrinfo call error %s\n", uv_err_name(r));

Diff for: docs/src/guide/networking.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Querying DNS
193193
libuv provides asynchronous DNS resolution. For this it provides its own
194194
``getaddrinfo`` replacement [#]_. In the callback you can
195195
perform normal socket operations on the retrieved addresses. Let's connect to
196-
Freenode to see an example of DNS resolution.
196+
Libera.chat to see an example of DNS resolution.
197197

198198
.. rubric:: dns/main.c
199199
.. literalinclude:: ../../code/dns/main.c

0 commit comments

Comments
 (0)