StefanKopieczek / gossip

SIP stack in Golang
GNU Lesser General Public License v2.1
336 stars 109 forks source link

Examples #7

Open johntdyer opened 9 years ago

johntdyer commented 9 years ago

Hello,

Any chance of you including some example apps? Maybe something akin to a "hello-world.go" ?

John

StefanKopieczek commented 9 years ago

Hi John,

Great idea! We definitely plan to, once we've got the project to a stage where it's practical for other people to use. Right now it's very much a work in progress – so I'm not sure examples would add much value until at least the transaction layer is complete. Hopefully that'll be within the next couple of months.

Thanks for the interest! Stefan

rynorris commented 9 years ago

There's a relatively basic test project at gossip-demo which we've used for interop testing with real softphones. It's still pretty bad for compatibility, but I've managed to get real calls set up to and from Jitsi using it.

johntdyer commented 9 years ago

Awesome, I'll check it out. I am mainly looking to do a sip proxy and wanted to do it in go.

rynorris commented 9 years ago

Awesome, I'd love to hear how your proxy turns out. I think we should be pretty usable for that, especially if you're going stateless and just operate with the transport layer directly. Of course wouldn't recommend putting us in any production code!

As a proxy, you should be aware of this issue where the order of parameters might be changed when passing through our parser. Shouldn't be an issue, but it's a little bad behaviour.

reformc commented 4 years ago

how to use as client