Kenneth Lundin
Kenneth Lundin
Another comment is that if the generated include files have different names from the ASN.1 modules which is their source then how would the user know which files to include...
I don't really understand your problem with naming the file exactly the same as the ASN.1 module that is defined inside the file. With that approach you will get a...
You can accomplish the thing you want with the multi file compilation feature https://www.erlang.org/doc/apps/asn1/asn1_getting_started.html#multi-file-compilation Create a file `this_file_sux.set.asn`. Inside that file you list the files with ASN.1 modules (one or...
I think the method using so called multi-file compilation like I described above will work for you. You create one `this_file_sux.set.asn` file and inside that one you have a list...
And underscore `_` is not an allowed character in an ASN.1 module name
I think the second case with the `IN-CS2-classes` is a different problem and that spec is not complete. `EXTENSION`is undefined. Will look at the first problem only. Please report the...
Hi @falkevik have you looked any more at this? Do I understand correctly that if there is an Erlang VM with usrsctp support active it is only that Linux process...
Should this: `spawn_opt(_, [{heap_growth}])` be `spawn_opt(_, [{heap_growth, low | normal}])` ??
I can see several possible solutions: 1. Break out the emacs mode to a separate repo under github.com/erlang and let it have its own release cycle 2. Break out the...
With this API the result can be adjusted according to the shortest (`trim`) or the longest (`pad`) of the two lists `A` and `B` with a call `lists:zip(A,B, OnDifferentLengths)` but...