mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-21 14:03:11 -07:00
Make StreamWindow create the Session
This commit is contained in:
parent
c34ce875ba
commit
8e15f498c2
6 changed files with 71 additions and 42 deletions
|
@ -34,6 +34,22 @@ CHIAKI_EXPORT const char *chiaki_error_string(ChiakiErrorCode code)
|
|||
return "Network error";
|
||||
case CHIAKI_ERR_INVALID_DATA:
|
||||
return "Invalid data";
|
||||
case CHIAKI_ERR_BUF_TOO_SMALL:
|
||||
return "Buffer too small";
|
||||
case CHIAKI_ERR_MUTEX_LOCKED:
|
||||
return "Mutex is locked";
|
||||
case CHIAKI_ERR_CANCELED:
|
||||
return "Canceled";
|
||||
case CHIAKI_ERR_TIMEOUT:
|
||||
return "Timeout";
|
||||
case CHIAKI_ERR_INVALID_RESPONSE:
|
||||
return "Invalid Response";
|
||||
case CHIAKI_ERR_INVALID_MAC:
|
||||
return "Invalid MAC";
|
||||
case CHIAKI_ERR_UNINITIALIZED:
|
||||
return "Uninitialized";
|
||||
case CHIAKI_ERR_FEC_FAILED:
|
||||
return "FEC failed";
|
||||
default:
|
||||
return "Unknown";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue