blob: 5d05e99dd85969710c3bb5a551a5d1efdff683c0 [file] [log] [blame]
Alexander Afanasyev68de7952012-12-12 18:02:29 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011-2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
21// custom-app.h
22
23#ifndef CUSTOM_APP_H_
24#define CUSTOM_APP_H_
25
Alexander Afanasyev0c395372014-12-20 15:54:02 -080026#include "ns3/ndn-app.hpp"
Alexander Afanasyev68de7952012-12-12 18:02:29 -080027
28namespace ns3 {
29
30/**
31 * @brief A simple custom application
32 *
Alexander Afanasyev772f51b2013-08-01 18:53:25 -070033 * This applications demonstrates how to send Interests and respond with Datas to incoming interests
Alexander Afanasyev68de7952012-12-12 18:02:29 -080034 *
35 * When application starts it "sets interest filter" (install FIB entry) for /prefix/sub, as well as
36 * sends Interest for this prefix
37 *
Alexander Afanasyev772f51b2013-08-01 18:53:25 -070038 * When an Interest is received, it is replied with a Data with 1024-byte fake payload
Alexander Afanasyev68de7952012-12-12 18:02:29 -080039 */
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080040class CustomApp : public ndn::App {
Alexander Afanasyev68de7952012-12-12 18:02:29 -080041public:
42 // register NS-3 type "CustomApp"
43 static TypeId
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080044 GetTypeId();
45
Alexander Afanasyev68de7952012-12-12 18:02:29 -080046 // (overridden from ndn::App) Processing upon start of the application
47 virtual void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080048 StartApplication();
Alexander Afanasyev68de7952012-12-12 18:02:29 -080049
50 // (overridden from ndn::App) Processing when application is stopped
51 virtual void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080052 StopApplication();
Alexander Afanasyev68de7952012-12-12 18:02:29 -080053
54 // (overridden from ndn::App) Callback that will be called when Interest arrives
55 virtual void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080056 OnInterest(Ptr<const ndn::Interest> interest);
Alexander Afanasyev68de7952012-12-12 18:02:29 -080057
58 // (overridden from ndn::App) Callback that will be called when Data arrives
59 virtual void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080060 OnData(Ptr<const ndn::Data> contentObject);
Alexander Afanasyev68de7952012-12-12 18:02:29 -080061
62private:
63 void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080064 SendInterest();
Alexander Afanasyev68de7952012-12-12 18:02:29 -080065};
66
67} // namespace ns3
68
69#endif // CUSTOM_APP_H_