tira-misu
tira-misu
If you do a request with big header (eg. long authentication token) leads to huge stack consumption. I have seen stack consumption of over 1MB with a authentication token of...
When using unix sockets its a good practice to unlink the unix socket file before binding to it. At the moment restbed crashes if the file is already linked. So...
I try to use comments in schema like described in writing a schema (May be written as in most C-based languages. And "///" with new line after this) and hope...
New TS seams to be a bit more restrictive with enum values. Most variables of an enum values are defaulted to 0. But in case of bit_flags value 0 is...
Here a PR for verifier for GO. I have added - some documentation - tests - the verifier itself
If you use same type name in different namespaces and use them in a non root_type, flatc will generate wrong code. Minimal example: ``` namespace foo; table MyType { value...
If you have a key in a struct and you try to use LookupByKey() with a char* (without const) the wrong function is called: ``` int KeyCompareWithValue(const char *_address) const...