diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-08-08 11:51:36 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-05 13:57:51 -0400 |
commit | 234c5015f1536bc51fe5f87c5b7c1072d3f9dbd2 (patch) | |
tree | c42f7496f55bf59ab8e0103239d2eec766b95aae /src/or/include.am | |
parent | babe31fc7c52700ae1d04f9b95eca75459d1a8c2 (diff) | |
download | tor-234c5015f1536bc51fe5f87c5b7c1072d3f9dbd2.tar.gz tor-234c5015f1536bc51fe5f87c5b7c1072d3f9dbd2.zip |
Move protocol-specific functions out of buffers.c
This commit does not change the implementation of any function: it
only moves code and adds new includes as necessary. Part of #23149.
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/or/include.am b/src/or/include.am index 69b505fcd4..caea04197b 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -79,6 +79,10 @@ LIBTOR_A_SOURCES = \ src/or/parsecommon.c \ src/or/periodic.c \ src/or/protover.c \ + src/or/proto_cell.c \ + src/or/proto_control0.c \ + src/or/proto_http.c \ + src/or/proto_socks.c \ src/or/policies.c \ src/or/reasons.c \ src/or/relay.c \ @@ -215,6 +219,10 @@ ORHEADERS = \ src/or/periodic.h \ src/or/policies.h \ src/or/protover.h \ + src/or/proto_cell.h \ + src/or/proto_control0.h \ + src/or/proto_http.h \ + src/or/proto_socks.h \ src/or/reasons.h \ src/or/relay.h \ src/or/rendcache.h \ |