ssid_to_utf8


Description:


public string ssid_to_utf8 (uint8[] ssid)

Wi-Fi SSIDs are byte arrays, they are _not_ strings.

Thus, an SSID may contain embedded NULLs and other unprintable characters. Often it is useful to print the SSID out for debugging purposes, but that should be the _only_ use of this function. Do not use this function for any persistent storage of the SSID, since the printable SSID returned from this function cannot be converted back into the real SSID of the access point.

This function does almost everything humanly possible to convert the input into a printable UTF-8 string, using roughly the following procedure:

1) if the input data is already UTF-8 safe, no conversion is performed 2) attempts to get the current system language from the LANG environment variable, and depending on the language, uses a table of alternative encodings to try. For example, if LANG=hu_HU, the table may first try the ISO-8859-2 encoding, and if that fails, try the Windows-1250 encoding. If all fallback encodings fail, replaces non-UTF-8 characters with '?'. 3) If the system language was unable to be determined, falls back to the ISO-8859-1 encoding, then to the Windows-1251 encoding. 4) If step 3 fails, replaces non-UTF-8 characters with '?'.

Again, this function should be used for debugging and display purposes _only_.

Parameters:

ssid

pointer to a buffer containing the SSID data

len

length of the SSID data in ssid

Returns:

an allocated string containing a UTF-8 representation of the SSID, which must be freed by the caller using g_free. Returns null on errors.


Namespace: NM.Utils
Package: libnm