freeswitch / sofia-sip

Sofia-SIP is an open-source SIP User-Agent library, compliant with the IETF RFC3261 specification.
GNU Lesser General Public License v2.1
254 stars 173 forks source link

How to check the Sofia version in FreeSWITCH #239

Closed ChiMuYuan closed 7 months ago

ChiMuYuan commented 7 months ago

Thank you

andywolk commented 7 months ago

It's a library that's installed when you install FreeSWITCH. You need to check your system. on Debian:

apt-cache policy libsofia-sip-ua0
ChiMuYuan commented 7 months ago

Thank you reply.

I'm sorry if I confused you. I got an error when installing FreeSWITCH using apt, but I succeeded by building it from source. So, when I check the version using apt-cache policy libsofia-sip-ua0 it shows Installed: (none)

image

I saw pull request #233 fixing numerous errors related to WSS, which might be what I need. So, I fetched the code for v1.13.17 and reinstalled it. However, I'm not sure if the installation was successful or if FreeSWITCH is using the latest sofia.

git clone https://github.com/freeswitch/sofia-sip.git
git checkout v1.13.17
./bootstrap
./configure
make
make install

I'm a beginner, so I apologize for any mistakes.