-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsumer.cpp
52 lines (43 loc) · 2.08 KB
/
consumer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <ndn-cxx/face.hpp>
#include <iostream>
using namespace ndn;
int main(int argc, char** argv)
{
Face faceToNFD;
Interest interest(Name("/cs217/100/test-data"));
interest.setMustBeFresh(true);
auto onData = [] (const Interest& interest, const Data& data) {
std::cout << " << D: " << data << std::endl;
};
auto onNack = [] (const Interest& interest, const lp::Nack& nack) {
std::cout << "received Nack with reason " << nack.getReason() << std::endl;
};
auto onTimeout = [] (const Interest& interest) {
std::cout << "interest timeout " << std::endl;
};
faceToNFD.expressInterest(interest, onData, onNack, onTimeout);
faceToNFD.processEvents();
return 0;
}
/*
|------------------------------------------------------------------------------|
| Express Interest |
|------------------------------------------------------------------------------|
const PendingInterestId*
expressInterest(const Interest& interest,
const DataCallback& afterSatisfied,
const NackCallback& afterNacked,
const TimeoutCallback& afterTimeout);
|------------------------------------------------------------------------------|
| Callback invoked when expressed Interest gets satisfied with a Data packet |
|------------------------------------------------------------------------------|
typedef function<void(const Interest&, const Data&)> DataCallback;
|------------------------------------------------------------------------------|
| Callback invoked when Nack is sent in response to expressed Interest |
|------------------------------------------------------------------------------|
typedef function<void(const Interest&, const lp::Nack&)> NackCallback;
|------------------------------------------------------------------------------|
| Callback invoked when expressed Interest times out |
|------------------------------------------------------------------------------|
typedef function<void(const Interest&)> TimeoutCallback;
*/