<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<pre wrap="">From Vaclav in an earlier thread:

Hi,
I don't know about the patch, but for storing something with registered
contact you can use "reg_avps" (AVPs stored with contact; you need only
to set a flag to them before you call save and if you want to get them
back, you can call "read_reg_avps"). So if you are able to translate
Path into AVP(s) you can use it... It is not tested and not described
but it can work... <span class="moz-smiley-s1"><span> :-) </span></span>

Something like this was working some time ago:

avpflags regavps;

modparam("usrloc", "reg_avp_table", "contact_attrs");
modparam("usrloc", "reg_avp_flag", "regavps")

route {
        ...

        if (method=="REGISTER") {
                $t.a = @msg["P-Avp"];
                $t.neco = "pokus";
                setavpflag("$t.a","regavps");
                setavpflag("$t.neco","regavps");

                save("location");
                break;
        }
        ...
}

branch_route[1]
{
        read_reg_avps("location", "$t.uid");
        xlog("L_ERR", "$t.a = %$t.a");
        ...
}

If somebody will be interested, I can try to describe it better (and
test a bit with Ottendorf)...


        Vaclav</pre>
<br>
<br>
Jiri Kuthan wrote:
<blockquote cite="mid:20080312144128.B45EA181C8CF@mail.iptel.org"
 type="cite">
  <pre wrap="">I think someone did it by the way of scripting.

-jiri

At 09:07 12/03/2008, Ladislav Andel wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Hi,
does SER support Path header field as described in RFC3327?

Thanks,
Lada

_______________________________________________
Serusers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Serusers@lists.iptel.org">Serusers@lists.iptel.org</a>
<a class="moz-txt-link-freetext" href="http://lists.iptel.org/mailman/listinfo/serusers">http://lists.iptel.org/mailman/listinfo/serusers</a>
    </pre>
  </blockquote>
  <pre wrap=""><!---->


--
Jiri Kuthan            <a class="moz-txt-link-freetext" href="http://iptel.org/~jiri/">http://iptel.org/~jiri/</a>

_______________________________________________
Serusers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Serusers@lists.iptel.org">Serusers@lists.iptel.org</a>
<a class="moz-txt-link-freetext" href="http://lists.iptel.org/mailman/listinfo/serusers">http://lists.iptel.org/mailman/listinfo/serusers</a>


  </pre>
</blockquote>
</body>
</html>