From 4cce4d0e75ded089397e1ae2919ab807c39fabb7 Mon Sep 17 00:00:00 2001 From: braams Date: Thu, 11 Jan 2024 22:18:56 +0100 Subject: [PATCH] Set the body field when creating an INFO event --- sippy/cc_events.go | 1 + 1 file changed, 1 insertion(+) diff --git a/sippy/cc_events.go b/sippy/cc_events.go index eafe258..a345e90 100644 --- a/sippy/cc_events.go +++ b/sippy/cc_events.go @@ -256,6 +256,7 @@ type CCEventInfo struct { func NewCCEventInfo(rtime *sippy_time.MonoTime, origin string, msg_body sippy_types.MsgBody, extra_headers ...sippy_header.SipHeader) *CCEventInfo { return &CCEventInfo{ CCEventGeneric : newCCEventGeneric(rtime, origin, extra_headers...), + body: msg_body, } }