Please report new issues athttps://github.com/DOCGroup
the corba spec describes in chapter 15 the GIOP functionality. As part of that there are several enums indicating message types, locate status, reply status, etc. We do have in TAO a duplicate of these enums but then as constants. We can define the corba enums in the pidl files and then use these enums to implement the orb. We can also add also the structs to the pidl files and then use the generate operators to do the (de)marshaling of these structs, instead of doing it in the orb code itself. With this action we could cleanup a lot of code.
getting rid of this would also remove the conversion between types which increases peformance
mine, done this on my system, doing some last reviews and testing before committing the changes to use the GIOP enums
enums are used now. not using the streaming operators yet, also the structs are not used yet.
pool