mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
spyc/dispatch: fix for udp
This commit is contained in:
parent
c4a915e82f
commit
7de29d90e1
1 changed files with 11 additions and 10 deletions
|
@ -1,20 +1,20 @@
|
||||||
// included by TCP circuit *and* UDP daemon // vim:syntax=lpc
|
// included by TCP circuit *and* UDP daemon // vim:syntax=lpc
|
||||||
|
|
||||||
|
volatile mapping routing = shared_memory("routing");
|
||||||
|
|
||||||
// processes routing header variable assignments
|
// processes routing header variable assignments
|
||||||
// basic version does no state
|
// basic version does no state
|
||||||
mixed process_routing_modifiers(mapping rvars, mapping vars) {
|
mixed process_routing_modifiers(mapping rvars, mapping vars) {
|
||||||
if (!mappingp(instate)) // no routing state for udp
|
|
||||||
return;
|
|
||||||
|
|
||||||
foreach (mixed vname : m_indices(rvars)) {
|
foreach (mixed vname : m_indices(rvars)) {
|
||||||
if (!isRouting[vname]) {
|
if (!routing[vname]) {
|
||||||
CIRCUITERROR("illegal varname in routing header")
|
DISPATCHERROR("illegal varname in routing header")
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (rvars[vname, 1]) {
|
switch (rvars[vname, 1]) {
|
||||||
case C_GLYPH_MODIFIER_ASSIGN:
|
case C_GLYPH_MODIFIER_ASSIGN:
|
||||||
// TODO: delete if empty?
|
// TODO: delete if empty?
|
||||||
instate[vname] = rvars[vname];
|
if (mappingp(instate))
|
||||||
|
instate[vname] = rvars[vname];
|
||||||
// fall thru
|
// fall thru
|
||||||
case C_GLYPH_MODIFIER_SET:
|
case C_GLYPH_MODIFIER_SET:
|
||||||
vars[vname] = rvars[vname];
|
vars[vname] = rvars[vname];
|
||||||
|
@ -22,22 +22,23 @@ mixed process_routing_modifiers(mapping rvars, mapping vars) {
|
||||||
case C_GLYPH_MODIFIER_AUGMENT:
|
case C_GLYPH_MODIFIER_AUGMENT:
|
||||||
case C_GLYPH_MODIFIER_DIMINISH:
|
case C_GLYPH_MODIFIER_DIMINISH:
|
||||||
case C_GLYPH_MODIFIER_QUERY:
|
case C_GLYPH_MODIFIER_QUERY:
|
||||||
CIRCUITERROR("header modifier with glyph other than ':' or '=', this is not implemented")
|
DISPATCHERROR("header modifier with glyph other than ':' or '=', this is not implemented")
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
CIRCUITERROR("header modifier with unknown glyph")
|
DISPATCHERROR("header modifier with unknown glyph")
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vars += instate;
|
if (mappingp(instate))
|
||||||
|
vars += instate;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
mixed process_entity_modifiers(mapping evars, mapping vars, mapping cstate) {
|
mixed process_entity_modifiers(mapping evars, mapping vars, mapping cstate) {
|
||||||
// apply evars to context state
|
// apply evars to context state
|
||||||
foreach (mixed vname : m_indices(evars)) {
|
foreach (mixed vname : m_indices(evars)) {
|
||||||
if (isRouting[vname] || abbrev("_INTERNAL", vname)
|
if (routing[vname] || abbrev("_INTERNAL", vname)
|
||||||
#ifndef LIBPSYC
|
#ifndef LIBPSYC
|
||||||
|| !legal_keyword(vname)
|
|| !legal_keyword(vname)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue