Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenSIPS/opensips
/ pool_insert
Function
pool_insert
db/db_pool.c:65–71 ·
view source on GitHub ↗
* Insert a new connection into the pool */
Source
from the content-addressed store, hash-verified
63
* Insert a new connection into the pool
64
*/
65
void pool_insert(struct pool_con* con)
66
{
67
if (!con) return;
68
69
con->next = db_pool;
70
db_pool = con;
71
}
72
73
74
/*
Callers
1
db_do_init
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected