diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-08-08 12:23:39 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-09-05 13:57:51 -0400 |
commit | 5921b465e7764d35b3f128cf0cf096eca3226688 (patch) | |
tree | 51f77fb0284b14bad8121043b00582e050b581c0 /src/or/include.am | |
parent | f28e314b0d5a6d4c677b87378cea70dc6524546b (diff) | |
download | tor-5921b465e7764d35b3f128cf0cf096eca3226688.tar.gz tor-5921b465e7764d35b3f128cf0cf096eca3226688.zip |
Make buffers.c independent of or.h
Also, put ext_or function in new module; it had accidentally gotten
into proto_socks.c
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/include.am b/src/or/include.am index caea04197b..fe860339fa 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -81,6 +81,7 @@ LIBTOR_A_SOURCES = \ src/or/protover.c \ src/or/proto_cell.c \ src/or/proto_control0.c \ + src/or/proto_ext_or.c \ src/or/proto_http.c \ src/or/proto_socks.c \ src/or/policies.c \ @@ -221,6 +222,7 @@ ORHEADERS = \ src/or/protover.h \ src/or/proto_cell.h \ src/or/proto_control0.h \ + src/or/proto_ext_or.h \ src/or/proto_http.h \ src/or/proto_socks.h \ src/or/reasons.h \ |