惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
T
Tailwind CSS Blog
U
Unit 42
C
Check Point Blog
S
SegmentFault 最新的问题
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
罗磊的独立博客
小众软件
小众软件
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The point where Linphone stops working for production, an...
john william · 2026-06-22 · via DEV Community

I like Linphone. I want to say that up front, because what follows is going to read like criticism and it isn't, exactly. Linphone is free, open source, speaks SIP properly, and runs everywhere. For testing a SIP setup or running something small, it's one of the first things I reach for.

But I've watched a few teams try to run a real product on it, and there's a fairly predictable point where it stops being the right tool. Sharing where that point is and what people tend to move to, because I keep having this conversation and figured I'd write it down once.

Where it actually breaks: mobile push

The first wall almost everyone hits is incoming calls on mobile.

Here's the mechanism. To receive a call, a SIP client has to be reachable. On desktop that's easy, the app is running, the registration stays alive, calls come through. On mobile it's a different game entirely. iOS and Android aggressively suspend backgrounded apps to save battery. A softphone trying to hold a persistent SIP registration alive in the background loses that fight. The OS freezes the app, the registration goes stale, and an incoming call routes to a device that never rings.

The fix is push-based wake. The server (or an SBC in front of it) sends a push via APNs on iOS or FCM on Android, the OS wakes the app, and the call gets handled, ideally through CallKit and ConnectionService so it looks like a native call. This requires real push infrastructure on the server side, not just client config.

Linphone has push support, but how reliably it works end to end depends heavily on your setup, your flexisip configuration, and how much you want to operate that infrastructure yourself. For a hobby setup, fine. For a business where a missed call is a lost customer, "depends on your setup" is not a great place to be.

The other walls

Push is the first wall but not the only one.

Branding: Linphone is Linphone. If you're shipping an app to your own customers, you can fork the open-source code and rebrand it, but now you own a fork: you're maintaining a softphone codebase, tracking upstream changes, and shipping to the app stores yourself. That's a real engineering commitment most teams underestimate.

Support: When something breaks in production at a bad hour, your options are community forums and your own debugging. That's the deal with free software and it's a fair deal, but it's not what a business running on its phone system usually wants.

Provisioning at scale: Configuring a handful of clients by hand is fine. Centrally provisioning hundreds of users with managed config is a different problem, and not one a general-purpose open source client is built to solve cleanly.

What people move to

The honest answer is "it depends on why you hit the wall," but the options sort out roughly like this.

If you forked Linphone for the branding and are now drowning in maintenance, the move is usually a white-label softphone that someone else maintains. You get your branding, your app store listing, your push infrastructure, without owning the codebase. with native SIP and WebRTC, push handling built in, and full white-label branding; their Linphone alternatives writeup lays out the comparison from their angle if you want it. Acrobits and Bria are also in this space with different tradeoffs.

If you just need a better desktop client, MicroSIP (Windows) or Zoiper are simpler moves and might be all you need.

I wrote up the full business-side comparison of the alternatives separately, including who each one actually fits, over here on Medium if you want the non-engineering version to send to whoever signs off on the decision.

The takeaway for anyone building on SIP

None of this is Linphone being bad. It's Linphone being free and general-purpose, which is a different thing from being a maintained, supported, branded product. Those are real costs that someone has to carry, and with open source that someone is you.

If you're early, building, experimenting, Linphone is great and you shouldn't overthink it. If you've hit the mobile-push wall, or you're forking for branding and feeling the maintenance weight, or you need someone to call at 2am, that's the signal that you've outgrown the free tool and it's time to look at what you're actually willing to pay for: money, or your own engineering time. Pick one honestly.

Anyone else gone through this transition? Curious whether people forked and regretted it, or moved to something commercial and wished they'd just maintained the fork. I've seen both, and I'm not sure there's a universally right answer.