Re: domain names and internationalization?

2022-09-19 Thread Alexander Leidinger
Quoting Rick Macklem  (from Mon, 19 Sep 2022  
20:27:29 +):



Hi,

Recently there has been discussion on the NFSv4 IETF working
group email list w.r.t. internationalization for the domain name
it uses for users/groups.

Right now, I am pretty sure the FreeBSD nfsuserd(8) only works
for ascii domain names, but...

I am hoping someone knows what DNS does in this area (the
working group list uses terms like umlaut, which I have never
even heard of;-).


DNS does this:
https://en.wikipedia.org/wiki/Punycode
This page also shows some umlauts (German ones to be precise, e.g.  
"Bücher") and other things like chinese and other characters.


There are libs which do the conversation, e.g.  
https://www.gnu.org/software/libidn/doxygen/index.html

I don't know if there are libs with more preferred licenses.

Bye,
Alexander.

--
http://www.Leidinger.net alexan...@leidinger.net: PGP 0x8F31830F9F2772BF
http://www.FreeBSD.orgnetch...@freebsd.org  : PGP 0x8F31830F9F2772BF


pgpb4gSj3Lh6y.pgp
Description: Digitale PGP-Signatur


Re: domain names and internationalization?

2022-09-19 Thread Mehmet Erol Sanliturk
On Mon, Sep 19, 2022 at 11:27 PM Rick Macklem  wrote:

> Hi,
>
> Recently there has been discussion on the NFSv4 IETF working
> group email list w.r.t. internationalization for the domain name
> it uses for users/groups.
>
> Right now, I am pretty sure the FreeBSD nfsuserd(8) only works
> for ascii domain names, but...
>
> I am hoping someone knows what DNS does in this area (the
> working group list uses terms like umlaut, which I have never
> even heard of;-).
>
> I know essentially nothing about internationalization, so any hints
> will be appreciated.
>
> Thanks, rick
>
>




https://en.wikipedia.org/wiki/Internationalization_and_localization
Internationalization and localization

https://www.google.com/search?q=internationalization+%28i18n%29=ALiCzsbsXi8Z_tScj_8BZPTxNfpQvwPEYw%3A1663641967630=bykpY8iJJpeBxc8PjpCF8AY=internationalization_lcp=Cgdnd3Mtd2l6EAEYADIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIKCAAQRxDWBBCwAzIHCAAQsAMQQzIHCAAQsAMQQ0oECEEYAEoECEYYAFAAWABgr11oAXABeACAAQCIAQCSAQCYAQDIAQrAAQE=gws-wiz

internationalization (i18n)



With my best wishes  for all .


Mehmet Erol Sanliturk


Re: RES: TP-LINK USB no carrier after speed test

2022-09-19 Thread Ivan Quitschal




On Mon, 19 Sep 2022, Hans Petter Selasky wrote:


Hi Ivan,

Can you also test this USB kernel patch? And revert your if_ure.c patch?

--HPS



hi Hans,

it *almost* worked ... everything was perfect , full speed 600/300 on the first 
5 tests (on sppedtest.net), on the 6th test, the same problem happened 
unfortunately


thanks

--tzk




domain names and internationalization?

2022-09-19 Thread Rick Macklem
Hi,

Recently there has been discussion on the NFSv4 IETF working
group email list w.r.t. internationalization for the domain name
it uses for users/groups.

Right now, I am pretty sure the FreeBSD nfsuserd(8) only works
for ascii domain names, but...

I am hoping someone knows what DNS does in this area (the
working group list uses terms like umlaut, which I have never
even heard of;-).

I know essentially nothing about internationalization, so any hints
will be appreciated.

Thanks, rick



Re: RES: TP-LINK USB no carrier after speed test

2022-09-19 Thread Hans Petter Selasky

Hi Ivan,

Can you also test this USB kernel patch? And revert your if_ure.c patch?

--HPSdiff --git a/sys/dev/usb/usb_transfer.c b/sys/dev/usb/usb_transfer.c
index 20ed2c897aac..757697926106 100644
--- a/sys/dev/usb/usb_transfer.c
+++ b/sys/dev/usb/usb_transfer.c
@@ -419,6 +419,7 @@ usbd_get_max_frame_length(const struct usb_endpoint_descriptor *edesc,
 
 		switch (type) {
 		case UE_CONTROL:
+		case UE_BULK:
 			max_packet_count = 1;
 			break;
 		case UE_ISOCHRONOUS:
@@ -529,6 +530,7 @@ usbd_transfer_setup_sub(struct usb_setup_params *parm)
 
 		switch (type) {
 		case UE_CONTROL:
+		case UE_BULK:
 			xfer->max_packet_count = 1;
 			break;
 		case UE_ISOCHRONOUS:


Re: RES: TP-LINK USB no carrier after speed test

2022-09-19 Thread Hans Petter Selasky

On 9/18/22 13:50, Ivan Quitschal wrote:

Hi Hans

just a heads up, it worked, tested a thousand times and the problem does 
not occur anylonger after i changed the constant to 2048


but upload speed was affcted a little i believe.
insted of 600/300 of internet speed , im having 600/90

but thats fine, way better now.

should this bug be in bugzilla for this ure driver as well wehave for axge?

thanks

--tzk


Hi Ivan,

I got one of those if_ure adapters at my hand, and will test it a bit 
before concluding. Stay tuned and thanks for your testing efforts!


--HPS