maufl / quic_toy

Play area for quic

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing base/basictypes.h and net/quic/quic_data_stream.h

bkfox opened this issue · comments

commented

I tried to compile running make, but there seems to have missing files (I also respected the directory structure having libquic's directory in the same directory of quic_toy's one):

$ make
g++ --std=c++11 -fpermissive -c -g -I. -I../libquic/src -I ../libquic/src/third_party/protobuf/src net/tools/quic/quic_client_session.cc -o net/tools/quic/quic_client_session.o
g++ --std=c++11 -fpermissive -c -g -I. -I../libquic/src -I ../libquic/src/third_party/protobuf/src net/tools/quic/quic_client_stream.cc -o net/tools/quic/quic_client_stream.o
In file included from net/tools/quic/quic_client_session.cc:5:0:
./net/tools/quic/quic_client_session.h:12:29: erreur fatale : base/basictypes.h : Aucun fichier ou dossier de ce type
 #include "base/basictypes.h"
                             ^
compilation terminée.
make: *** [Makefile:23: net/tools/quic/quic_client_session.o] Error 1
make: *** Attente des tâches non terminées....
In file included from net/tools/quic/quic_client_stream.cc:3:0:
./net/tools/quic/quic_client_stream.h:1:39: erreur fatale : net/quic/quic_data_stream.h : Aucun fichier ou dossier de ce type
 #include "net/quic/quic_data_stream.h"
                                       ^
compilation terminée.
make: *** [Makefile:23: net/tools/quic/quic_client_stream.o] Error 1

Sorry, I did not receive a notification for your issue. This repository is two years out of date and I'm not working with QUIC anymore, so I guess you'll have more luck using something like https://github.com/google/proto-quic.

commented

thank you for the answer and the information. I'll take a look there;