├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── config.guess ├── config.sub ├── configure.ac ├── configure.scan ├── depcomp ├── install-sh ├── missing └── src ├── Makefile.am ├── a2spipe.c ├── a2spipe.h ├── accessory.c ├── accessory.h ├── aoaproxy.c ├── aoaproxy.h ├── audio.c ├── audio.h ├── bluetooth.c ├── bluetooth.h ├── log.h ├── tcp.c └── tcp.h /AUTHORS: -------------------------------------------------------------------------------- 1 | Tim Otto 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=src 2 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/README -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/config.sub -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/configure.scan -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/a2spipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/a2spipe.c -------------------------------------------------------------------------------- /src/a2spipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/a2spipe.h -------------------------------------------------------------------------------- /src/accessory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/accessory.c -------------------------------------------------------------------------------- /src/accessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/accessory.h -------------------------------------------------------------------------------- /src/aoaproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/aoaproxy.c -------------------------------------------------------------------------------- /src/aoaproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/aoaproxy.h -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/bluetooth.c -------------------------------------------------------------------------------- /src/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/bluetooth.h -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/log.h -------------------------------------------------------------------------------- /src/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/tcp.c -------------------------------------------------------------------------------- /src/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timotto/AOA-Proxy/HEAD/src/tcp.h --------------------------------------------------------------------------------