1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
|
# Brazilian Portuguese translation of manpages
# This file is distributed under the same license as the manpages-l10n package.
# Copyright © of this file:
# Felipe M Pereira <Felipe.Pereira@ic.unicamp.br>, 2001.
# André Luiz Fassone <lonely_wolf@ig.com.br>, 2001.
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n\n"
"POT-Creation-Date: 2024-06-01 05:52+0200\n"
"PO-Revision-Date: 2001-06-02 19:20-0300\n"
"Last-Translator: André Luiz Fassone <lonely_wolf@ig.com.br>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
"org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Virtaal 1.0.0-beta1\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<getnameinfo>()"
msgid "getnameinfo"
msgstr "B<getnameinfo>()"
#. type: TH
#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
msgid "2024-05-02"
msgstr "2 maio 2024"
#. type: TH
#: archlinux debian-unstable
#, fuzzy, no-wrap
#| msgid "Linux man-pages 6.7"
msgid "Linux man-pages 6.8"
msgstr "Linux man-pages 6.7"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "NOME"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"getnameinfo - address-to-name translation in protocol-independent manner"
msgstr ""
"getnameinfo - tradução endereço-nome de forma independente do protocolo"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "LIBRARY"
msgstr "BIBLIOTECA"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Standard C library (I<libc>, I<-lc>)"
msgstr "Biblioteca C Padrão (I<libc>, I<-lc>)"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr "SINOPSE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<#include E<lt>sys/socket.hE<gt>>\n"
"B<#include E<lt>netdb.hE<gt>>\n"
msgstr ""
"B<#include E<lt>sys/socket.hE<gt>>\n"
"B<#include E<lt>netdb.hE<gt>>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "B<int getnameinfo(const struct sockaddr *>I<addr>B<, socklen_t >I<addrlen>B<,>\n"
#| "B< char *>I<host>B<, socklen_t >I<hostlen>B<,>\n"
#| "B< char *>I<serv>B<, socklen_t >I<servlen>B<, int >I<flags>B<);>\n"
msgid ""
"B<int getnameinfo(const struct sockaddr *restrict >I<addr>B<, socklen_t >I<addrlen>B<,>\n"
"B< char >I<host>B<[_Nullable restrict .>I<hostlen>B<],>\n"
"B< socklen_t >I<hostlen>B<,>\n"
"B< char >I<serv>B<[_Nullable restrict .>I<servlen>B<],>\n"
"B< socklen_t >I<servlen>B<,>\n"
"B< int >I<flags>B<);>\n"
msgstr ""
"B<int getnameinfo(const struct sockaddr *>I<addr>B<, socklen_t >I<addrlen>B<,>\n"
"B< char *>I<host>B<, socklen_t >I<hostlen>B<,>\n"
"B< char *>I<serv>B<, socklen_t >I<servlen>B<, int >I<flags>B<);>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Feature Test Macro Requirements for glibc (see B<feature_test_macros>(7)):"
msgstr ""
"Requisitos de macro de teste de recursos para o glibc (consulte "
"B<feature_test_macros>(7)):"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid "B<getnameinfo>()"
msgid "B<getnameinfo>():"
msgstr "B<getnameinfo>()"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "/* Since glibc 2.10: */ _POSIX_C_SOURCE\\ E<gt>=\\ 200809L\n"
#| " || /* Glibc versions E<lt>= 2.19: */ _BSD_SOURCE || _SVID_SOURCE\n"
msgid ""
" Since glibc 2.22:\n"
" _POSIX_C_SOURCE E<gt>= 200112L\n"
" glibc 2.21 and earlier:\n"
" _POSIX_C_SOURCE\n"
msgstr ""
"/* Desde o 2.10: */ _POSIX_C_SOURCE\\ E<gt>=\\ 200809L\n"
" || /* Glibc versões E<lt>= 2.19: */ _BSD_SOURCE || _SVID_SOURCE\n"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "DESCRIÇÃO"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The B<getnameinfo>() function is the inverse of B<getaddrinfo>(3): it "
"converts a socket address to a corresponding host and service, in a protocol-"
"independent manner. It combines the functionality of B<gethostbyaddr>(3) "
"and B<getservbyport>(3), but unlike those functions, B<getnameinfo>() is "
"reentrant and allows programs to eliminate IPv4-versus-IPv6 dependencies."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "The B<getnameinfo>(3) function is defined for protocol-independent "
#| "address-to-nodename translation. It combines the functionality of "
#| "B<gethostbyaddr>(3) and B<getservbyport>(3) and is the inverse of "
#| "B<getaddrinfo>(3). The I<sa> argument is a pointer to a generic socket "
#| "address structure (of type I<sockaddr_in> or I<sockaddr_in6>) of size "
#| "I<salen> that holds the input IP address and port number. The arguments "
#| "I<host> and I<serv> are pointers to buffers (of size I<hostlen> and "
#| "I<servlen> repectively) to hold the return values."
msgid ""
"The I<addr> argument is a pointer to a generic socket address structure (of "
"type I<sockaddr_in> or I<sockaddr_in6>) of size I<addrlen> that holds the "
"input IP address and port number. The arguments I<host> and I<serv> are "
"pointers to caller-allocated buffers (of size I<hostlen> and I<servlen> "
"respectively) into which B<getnameinfo>() places null-terminated strings "
"containing the host and service names respectively."
msgstr ""
"A função B<getnameinfo>(3) está definida para tradução endereço-nomedonó "
"independentemente de protocolo. Ela combina a funcionalidade de "
"B<gethostbyaddr>(3) e B<getservbyport>(3) e é o inverso de "
"B<getaddrinfo>(3). O argumento I<sa> é um ponteiro para uma estrutura de "
"endereço de 'socket' genérico (de tipo I<sockaddr_in> ou I<sockaddr_in6>) de "
"tamanho I<salen> que contém as entradas endereço IP e número da porta. Os "
"argumentos I<host> e I<serv> são ponteiros para buffers (de tamanho "
"I<hostlen> e I<servlen> respectivamente) para manter os valores de retorno."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "The caller can specify that no hostname (or no service name) is required "
#| "by providing a NULL I<host> (or I<serv>) argument or a zero I<hostlen> "
#| "(or I<servlen>) parameter. However, at least one of hostname or service "
#| "name must be requested."
msgid ""
"The caller can specify that no hostname (or no service name) is required by "
"providing a NULL I<host> (or I<serv>) argument or a zero I<hostlen> (or "
"I<servlen>) argument. However, at least one of hostname or service name "
"must be requested."
msgstr ""
"O chamador pode especificar que o 'hostname' (ou o nome de serviço) não está "
"sendo solicitado fornecendo um argumento I<host> (ou I<serv>) como NULO ou "
"um parâmetro I<hostlen> (ou I<servlen>) como zero. Entretanto, um dos dois "
"(ou \"hostname\" ou nome de serviço) deve ser solicitado."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The I<flags> argument modifies the behavior of B<getnameinfo>() as follows:"
msgstr ""
"O argumento I<flags> modifica o comportamento de B<getnameinfo>() como segue:"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<NI_NAMEREQD>"
msgstr "B<NI_NAMEREQD>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "If set, then a error is returned if the hostname cannot be looked up."
msgid "If set, then an error is returned if the hostname cannot be determined."
msgstr ""
"Se ligado, um erro é retornado se o \"hostname\" não pode ser encontrado."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<NI_DGRAM>"
msgstr "B<NI_DGRAM>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "If set, then the service is datagram (UDP) based rather than stream (TCP) "
#| "based. This is required for the few ports (512\\(en514) that have "
#| "different services for UDP and TCP."
msgid ""
"If set, then the service is datagram (UDP) based rather than stream (TCP) "
"based. This is required for the few ports (512\\[en]514) that have "
"different services for UDP and TCP."
msgstr ""
"Se ligado, o serviço é baseado em datagrama (UDP) em vez de baseado em "
"stream (TCP). Isto é requerido para as poucas portas (512\\(en514) que "
"possuem serviços diferentes para UDP e TCP."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<NI_NOFQDN>"
msgstr "B<NI_NOFQDN>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid "If set, return only the hostname part of the FQDN for local hosts."
msgid ""
"If set, return only the hostname part of the fully qualified domain name for "
"local hosts."
msgstr ""
"Se ligado, retorna apenas a parte \"hostname\" do FQDN para hosts locais."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<NI_NUMERICHOST>"
msgstr "B<NI_NUMERICHOST>"
#. For example, by calling
#. .BR inet_ntop ()
#. instead of
#. .BR gethostbyaddr ().
#. POSIX.1-2001 TC1 has NI_NUMERICSCOPE, but glibc doesn't have it.
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "If set, then the numeric form of the hostname is returned. (When not "
#| "set, this will still happen in case the node's name cannot be looked up.)"
msgid ""
"If set, then the numeric form of the hostname is returned. (When not set, "
"this will still happen in case the node's name cannot be determined.)"
msgstr ""
"Se ligado, então a forma numérica do \"hostname\" é retornada. (Quando "
"desligado, isto ainda irá acontecer para o caso em que o nome do nó não "
"puder ser encontrado.)"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<NI_NUMERICSERV>"
msgstr "B<NI_NUMERICSERV>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "If set, then the numeric form of the hostname is returned. (When not "
#| "set, this will still happen in case the node's name cannot be looked up.)"
msgid ""
"If set, then the numeric form of the service address is returned. (When not "
"set, this will still happen in case the service's name cannot be determined.)"
msgstr ""
"Se ligado, então a forma numérica do \"hostname\" é retornada. (Quando "
"desligado, isto ainda irá acontecer para o caso em que o nome do nó não "
"puder ser encontrado.)"
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Extensions to getnameinfo() for Internationalized Domain Names"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Starting with glibc 2.3.4, B<getnameinfo>() has been extended to "
"selectively allow hostnames to be transparently converted to and from the "
"Internationalized Domain Name (IDN) format (see RFC 3490, "
"I<Internationalizing Domain Names in Applications (IDNA)>). Three new flags "
"are defined:"
msgstr ""
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<NI_IDN>"
msgstr "B<NI_IDN>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If this flag is used, then the name found in the lookup process is converted "
"from IDN format to the locale's encoding if necessary. ASCII-only names are "
"not affected by the conversion, which makes this flag usable in existing "
"programs and environments."
msgstr ""
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<NI_IDN_ALLOW_UNASSIGNED>, B<NI_IDN_USE_STD3_ASCII_RULES>"
msgid "B<NI_IDN_ALLOW_UNASSIGNED>"
msgstr "B<NI_IDN_ALLOW_UNASSIGNED>, B<NI_IDN_USE_STD3_ASCII_RULES>"
#. type: TQ
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<NI_IDN_ALLOW_UNASSIGNED>, B<NI_IDN_USE_STD3_ASCII_RULES>"
msgid "B<NI_IDN_USE_STD3_ASCII_RULES>"
msgstr "B<NI_IDN_ALLOW_UNASSIGNED>, B<NI_IDN_USE_STD3_ASCII_RULES>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Setting these flags will enable the IDNA_ALLOW_UNASSIGNED (allow unassigned "
"Unicode code points) and IDNA_USE_STD3_ASCII_RULES (check output to make "
"sure it is a STD3 conforming hostname) flags respectively to be used in the "
"IDNA handling."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "RETURN VALUE"
msgstr "VALOR DE RETORNO"
#. FIXME glibc defines the following additional errors, some which
#. can probably be returned by getnameinfo(); they need to
#. be documented.
#. #ifdef __USE_GNU
#. #define EAI_INPROGRESS -100 /* Processing request in progress. */
#. #define EAI_CANCELED -101 /* Request canceled. */
#. #define EAI_NOTCANCELED -102 /* Request not canceled. */
#. #define EAI_ALLDONE -103 /* All requests done. */
#. #define EAI_INTR -104 /* Interrupted by a signal. */
#. #define EAI_IDN_ENCODE -105 /* IDN encoding failed. */
#. #endif
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "On success 0 is returned, and node and service names, if requested, are "
#| "filled with NUL-terminated strings, possibly truncated to fit the "
#| "specified buffer lengths. On error a nonzero value is returned, and "
#| "I<errno> is set appropriately."
msgid ""
"On success, 0 is returned, and node and service names, if requested, are "
"filled with null-terminated strings, possibly truncated to fit the specified "
"buffer lengths. On error, one of the following nonzero error codes is "
"returned:"
msgstr ""
"No sucesso, 0 é retornado, e nomes de nó e de serviço, se solicitados, são "
"preenchidos com strings terminadas em '\\0', possivelmente truncadas para "
"caber nos tamanhos de buffers especificados. Havendo erro um valor diferente "
"de zero é retornado, e a variável I<errno> é ajustada apropriadamente."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_AGAIN>"
msgstr "B<EAI_AGAIN>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The name could not be resolved at this time. Try again later."
msgstr "O nome não pode ser resolvido desta vez. Tente novamente mais tarde."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_BADFLAGS>"
msgstr "B<EAI_BADFLAGS>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid "The I<flags> parameter has an invalid value."
msgid "The I<flags> argument has an invalid value."
msgstr "O parâmetro I<flags> possui um valor inválido."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_FAIL>"
msgstr "B<EAI_FAIL>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "A nonrecoverable error occurred."
msgstr "Um erro irrecuperável ocorreu."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_FAMILY>"
msgstr "B<EAI_FAMILY>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The address family was not recognized, or the address length was invalid for "
"the specified family."
msgstr ""
"A família de endereços não foi reconhecida, ou o tamanho do endereço era "
"inválido para a família especificada."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_MEMORY>"
msgstr "B<EAI_MEMORY>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Out of memory."
msgstr "Sem memória."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_NONAME>"
msgstr "B<EAI_NONAME>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "The name does not resolve for the supplied parameters. NI_NAMEREQD is "
#| "set and the host's name cannot be located, or neither hostname nor "
#| "service name were requested."
msgid ""
"The name does not resolve for the supplied arguments. B<NI_NAMEREQD> is set "
"and the host's name cannot be located, or neither hostname nor service name "
"were requested."
msgstr ""
"O nome não é resolvido para os parâmetros supridos. NI_NAMEREQD está ligado "
"e o nome do host não pode ser localizado, ou nem o hostname nem o nome de "
"serviço foram solicitados."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_OVERFLOW>"
msgstr "B<EAI_OVERFLOW>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The buffer pointed to by I<host> or I<serv> was too small."
msgstr ""
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<EAI_SYSTEM>"
msgstr "B<EAI_SYSTEM>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "A system error occurred. The error code can be found in I<errno>."
msgstr ""
"Um erro de sistema ocorreu. O código de erro pode ser encontrado em I<errno>."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The B<gai_strerror>(3) function translates these error codes to a human "
"readable string, suitable for error reporting."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "FILES"
msgstr "ARQUIVOS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I</etc/hosts>"
msgstr "I</etc/hosts>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I</etc/nsswitch.conf>"
msgstr "I</etc/nsswitch.conf>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I</etc/resolv.conf>"
msgstr "I</etc/resolv.conf>"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ATTRIBUTES"
msgstr "ATRIBUTOS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For an explanation of the terms used in this section, see B<attributes>(7)."
msgstr ""
"Para uma explicação dos termos usados nesta seção, consulte B<attributes>(7)."
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Interface"
msgstr "Interface"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Attribute"
msgstr "Atributo"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Value"
msgstr "Valor"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".na\n"
msgstr ".na\n"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".nh\n"
msgstr ".nh\n"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<getnameinfo>()"
msgstr "B<getnameinfo>()"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Thread safety"
msgstr "Thread safety"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "MT-Safe env locale"
msgstr "MT-Safe env locale"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "STANDARDS"
msgstr "PADRÕES"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid "POSIX.1-2001, POSIX.1-2008, RFC\\ 2553."
msgid "POSIX.1-2008. RFC\\ 2553."
msgstr "POSIX.1-2001, POSIX.1-2008, RFC\\ 2553."
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "HISTORY"
msgstr "HISTÓRICO"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid "glibc 2.1. C99, POSIX.1-2001."
msgid "glibc 2.1. POSIX.1-2001."
msgstr "glibc 2.1. C99, POSIX.1-2001."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Before glibc 2.2, the I<hostlen> and I<servlen> arguments were typed as "
"I<size_t>."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NOTES"
msgstr "NOTAS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In order to assist the programmer in choosing reasonable sizes for the "
"supplied buffers, I<E<lt>netdb.hE<gt>> defines the constants"
msgstr ""
"A fim de ajudar o programador a escolher tamanhos razoáveis para os buffers "
"fornecidos, I<E<lt>netdb.hE<gt>> define as constantes"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"#define NI_MAXHOST 1025\n"
"#define NI_MAXSERV 32\n"
msgstr ""
"#define NI_MAXHOST 1025\n"
"#define NI_MAXSERV 32\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Since glibc 2.8, these definitions are exposed only if suitable feature test "
"macros are defined, namely: B<_GNU_SOURCE>, B<_DEFAULT_SOURCE> (since glibc "
"2.19), or (in glibc versions up to and including 2.19) B<_BSD_SOURCE> or "
"B<_SVID_SOURCE>."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The former is the constant B<MAXDNAME> in recent versions of BIND's "
"I<E<lt>arpa/nameser.hE<gt>> header file. The latter is a guess based on the "
"services listed in the current Assigned Numbers RFC."
msgstr ""
"A primeira é a constante B<MAXDNAME> em versões recentes do arquivo header "
"do BIND I<E<lt>arpa/nameser.hE<gt>>. O último é um chute baseado nos "
"serviços listados na RFC \"Assigned Numbers\" atual."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "EXAMPLES"
msgstr "EXEMPLOS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following code tries to get the numeric hostname and service name, for a "
"given socket address. Note that there is no hardcoded reference to a "
"particular address family."
msgstr ""
"O seguinte código tenta obter o hostname numérico e o nome de serviço, para "
"um dado endereço de 'socket'. Note que não há referência no código para uma "
"família de endereços em particular."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf), sbuf,\n"
#| " sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV) == 0)\n"
#| " printf(\"host=%s, serv=%s\\en\", hbuf, sbuf);\n"
msgid ""
"struct sockaddr *addr; /* input */\n"
"socklen_t addrlen; /* input */\n"
"char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV];\n"
"\\&\n"
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf), sbuf,\n"
" sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV) == 0)\n"
" printf(\"host=%s, serv=%s\\en\", hbuf, sbuf);\n"
msgstr ""
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf), sbuf,\n"
" sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV) == 0)\n"
" printf(\"host=%s, serv=%s\\en\", hbuf, sbuf);\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following version checks if the socket address has a reverse address "
"mapping."
msgstr ""
"A seguinte versão verifica se o endereço do 'socket' possui um mapeamento de "
"endereço reverso."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf),\n"
#| " NULL, 0, NI_NAMEREQD))\n"
#| " printf(\"could not resolve hostname\");\n"
#| "else\n"
#| " printf(\"host=%s\\en\", hbuf);\n"
msgid ""
"struct sockaddr *addr; /* input */\n"
"socklen_t addrlen; /* input */\n"
"char hbuf[NI_MAXHOST];\n"
"\\&\n"
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf),\n"
" NULL, 0, NI_NAMEREQD))\n"
" printf(\"could not resolve hostname\");\n"
"else\n"
" printf(\"host=%s\\en\", hbuf);\n"
msgstr ""
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf),\n"
" NULL, 0, NI_NAMEREQD))\n"
" printf(\"não foi possível resolver hostname\");\n"
"else\n"
" printf(\"host=%s\\en\", hbuf);\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"An example program using B<getnameinfo>() can be found in B<getaddrinfo>(3)."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr "VEJA TAMBÉM"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<accept>(2), B<getpeername>(2), B<getsockname>(2), B<recvfrom>(2), "
"B<socket>(2), B<getaddrinfo>(3), B<gethostbyaddr>(3), B<getservbyname>(3), "
"B<getservbyport>(3), B<inet_ntop>(3), B<hosts>(5), B<services>(5), "
"B<hostname>(7), B<named>(8)"
msgstr ""
"B<accept>(2), B<getpeername>(2), B<getsockname>(2), B<recvfrom>(2), "
"B<socket>(2), B<getaddrinfo>(3), B<gethostbyaddr>(3), B<getservbyname>(3), "
"B<getservbyport>(3), B<inet_ntop>(3), B<hosts>(5), B<services>(5), "
"B<hostname>(7), B<named>(8)"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"R.\\& Gilligan, S.\\& Thomson, J.\\& Bound and W.\\& Stevens, I<Basic Socket "
"Interface Extensions for IPv6>, RFC\\ 2553, March 1999."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Tatsuya Jinmei and Atsushi Onoe, I<An Extension of Format for IPv6 Scoped "
"Addresses>, internet draft, work in progress E<.UR ftp://ftp.ietf.org\\:/"
"internet-drafts\\:/draft-ietf-ipngwg-scopedaddr-format-02.txt> E<.UE .>"
msgstr ""
"Tatsuya Jinmei and Atsushi Onoe, I<An Extension of Format for IPv6 Scoped "
"Addresses>, versão preliminar da internet, trabalho em progresso. E<.UR "
"ftp://ftp.ietf.org\\:/internet-drafts\\:/draft-ietf-ipngwg-scopedaddr-"
"format-02.txt> E<.UE .>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Craig Metz, I<Protocol Independence Using the Sockets API>, Proceedings of "
"the freenix track: 2000 USENIX annual technical conference, June 2000"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"E<.UR http://www.usenix.org\\:/publications\\:/library\\:/proceedings\\:/"
"usenix2000\\:/freenix\\:/metzprotocol.html> E<.UE .>"
msgstr ""
"E<.UR http://www.usenix.org\\:/publications\\:/library\\:/proceedings\\:/"
"usenix2000\\:/freenix\\:/metzprotocol.html> E<.UE .>"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "2023-02-05"
msgstr "5 fevereiro 2023"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "Linux man-pages 6.03"
msgstr "Linux man-pages 6.03"
#. type: TP
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid "B<NI_IDN_ALLOW_UNASSIGNED>, B<NI_IDN_USE_STD3_ASCII_RULES>"
msgstr "B<NI_IDN_ALLOW_UNASSIGNED>, B<NI_IDN_USE_STD3_ASCII_RULES>"
#. type: SH
#: debian-bookworm
#, no-wrap
msgid "VERSIONS"
msgstr "VERSÕES"
#. type: Plain text
#: debian-bookworm
#, fuzzy
#| msgid "This function is available in glibc since version 2.1."
msgid "B<getnameinfo>() is provided since glibc 2.1."
msgstr "Esta função está disponível no glibc desde a versão 2.1."
#. type: Plain text
#: debian-bookworm
msgid "POSIX.1-2001, POSIX.1-2008, RFC\\ 2553."
msgstr "POSIX.1-2001, POSIX.1-2008, RFC\\ 2553."
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"struct sockaddr *addr; /* input */\n"
"socklen_t addrlen; /* input */\n"
"char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV];\n"
msgstr ""
"struct sockaddr *addr; /* entrada */\n"
"socklen_t addrlen; /* entrada */\n"
"char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV];\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf), sbuf,\n"
" sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV) == 0)\n"
" printf(\"host=%s, serv=%s\\en\", hbuf, sbuf);\n"
msgstr ""
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf), sbuf,\n"
" sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV) == 0)\n"
" printf(\"host=%s, serv=%s\\en\", hbuf, sbuf);\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"struct sockaddr *addr; /* input */\n"
"socklen_t addrlen; /* input */\n"
"char hbuf[NI_MAXHOST];\n"
msgstr ""
"struct sockaddr *addr; /* entrada */\n"
"socklen_t addrlen; /* entrada */\n"
"char hbuf[NI_MAXHOST];\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf),\n"
" NULL, 0, NI_NAMEREQD))\n"
" printf(\"could not resolve hostname\");\n"
"else\n"
" printf(\"host=%s\\en\", hbuf);\n"
msgstr ""
"if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf),\n"
" NULL, 0, NI_NAMEREQD))\n"
" printf(\"não foi possível resolver hostname\");\n"
"else\n"
" printf(\"host=%s\\en\", hbuf);\n"
#. type: TH
#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "2023-10-31"
msgstr "31 outubro 2023"
#. type: TH
#: fedora-40 mageia-cauldron
#, no-wrap
msgid "Linux man-pages 6.06"
msgstr "Linux man-pages 6.06"
#. type: TH
#: fedora-rawhide
#, no-wrap
msgid "Linux man-pages 6.7"
msgstr "Linux man-pages 6.7"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "2023-03-30"
msgstr "30 março 2023"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Linux man-pages 6.04"
#. type: TH
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "Linux man-pages 6.7"
msgid "Linux man-pages (unreleased)"
msgstr "Linux man-pages 6.7"
|