diff options
author | Martin Blanchard <tchaik@gmx.com> | 2016-11-06 12:54:03 -0600 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2017-01-19 03:00:45 +0200 |
commit | 31ded701b1d3bd9f2880a7f20da601dce62af3ba (patch) | |
tree | 3a90aae055d51f15a4e78559d734367255dcc1ab /src/Makefile.am | |
parent | 31e2bc2fcf828e399e62e1525e1f4fc959475106 (diff) |
raop: Extract encryption related code into a separate file
That makes the raop_client.c code smaller/cleaner and will simplify
addition of more crypto related stuffs like authentication.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ebc633c2..ebd727ea 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1155,6 +1155,7 @@ librtp_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@ libraop_la_SOURCES = \ modules/raop/raop_client.c modules/raop/raop_client.h \ + modules/raop/raop_crypto.c modules/raop/raop_crypto.h \ modules/raop/base64.c modules/raop/base64.h \ modules/raop/raop_packet_buffer.h modules/raop/raop_packet_buffer.c libraop_la_CFLAGS = $(AM_CFLAGS) $(OPENSSL_CFLAGS) -I$(top_srcdir)/src/modules/rtp |