diff options
author | Alfred E. Heggestad <aeh@db.org> | 2016-06-06 10:14:12 +0200 |
---|---|---|
committer | Alfred E. Heggestad <aeh@db.org> | 2016-06-06 10:14:12 +0200 |
commit | 6910d50e9b1e80fe758b259149012e7e062eecd0 (patch) | |
tree | aecd149deed8ae71349e3b2e626e53f57a9c974a /src/srcs.mk | |
parent | 362914f55831f4ad3afd7c0cad8f01f2f8b4892c (diff) |
net: make networking code re-entrant
- The network instance is now in struct network and does not
use any local/static data
- A new top-level struct in baresip.c owns the single instance
of struct network
it is a long-term goal to remove all local/static data
from libbaresip and make it fully re-entrant.
Diffstat (limited to 'src/srcs.mk')
-rw-r--r-- | src/srcs.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/srcs.mk b/src/srcs.mk index 1ef6a4e..c538600 100644 --- a/src/srcs.mk +++ b/src/srcs.mk @@ -10,6 +10,7 @@ SRCS += audio.c SRCS += aufilt.c SRCS += auplay.c SRCS += ausrc.c +SRCS += baresip.c SRCS += call.c SRCS += cmd.c SRCS += conf.c |