1. 4affbf5 code style: Don't use std:: inside .cpp files. by Jeff Thompson · 11 years ago
  2. 9a8e82f common.hpp: time: Added typedef for Milliseconds and MillisecondsSince1970, and use instead of double where appropriate. by Jeff Thompson · 11 years ago
  3. 9ae4d78 util: Move getNowMilliseconds from node.cpp to c/util/time.c. by Jeff Thompson · 11 years ago
  4. e589c3f Code style: Replace tab with space. by Jeff Thompson · 11 years ago
  5. 25b4e61 make: Global change: Move all public headers to include folder. Change source to including public headers using #include <ndn-cpp/*>. Split some header files to minimize exposing C .h files. by Jeff Thompson · 11 years ago
  6. b510e3e Face: in OnInterest callback for registerPrefix, added registeredPrefixId argument. by Jeff Thompson · 11 years ago
  7. 62992e4 Face: Make pendingInterestId and registeredPrefixId uint64_t. by Jeff Thompson · 11 years ago
  8. 1109514 Added support for removePendingInterest and removeRegisteredPrefix. by Jeff Thompson · 11 years ago
  9. 1f8a31a ForwardingFlags: Added ForwardingFlags class and use it in registerPrefix and ForwardingEntry instead of int flags. by Jeff Thompson · 11 years ago
  10. dba5c4d Node: Fix bug in registerPrefix to actually use the supplied flags. by Jeff Thompson · 11 years ago
  11. 97223af globa: Change unsigned int to size_t where it is the size of a byte array or an index/offset into it. by Jeff Thompson · 11 years ago
  12. 10ad12a global: Rename unsigned char to uint8, DynamicUCharArray to DynamicUInt8Array and DynamicUCharVector to DynamicUInt8Vector. by Jeff Thompson · 11 years ago
  13. ea141d7 registerPrefix: Added selfregSign with a default keypair and use it in registerPrefix. Remove keyChain, signerName and byKeyName from registerPrefix. by Jeff Thompson · 11 years ago
  14. 590ec23 In Face.registerPrefix, need to pass keyChain, signerName, etc. so that it can sign the Data packet with the ForwardingEntry. by Jeff Thompson · 11 years ago
  15. 2ce8f49 security: Added initial KeyChain.signData and verifyData by Jeff Thompson · 11 years ago
  16. 0050abe Code style: Put function return type on a line by itself. by Jeff Thompson · 11 years ago
  17. 7687dc0 All source files: Added UC Copyright. Added jefft0 email address. by Jeff Thompson · 11 years ago
  18. 20af073 Make Signature an abstract base class and added subclass Sha256WithRsaSignature. Change Data.signature to a pointer to a Signature. by Jeff Thompson · 11 years ago
  19. c2b7b14 Change wire encoding to return a Blob. by Jeff Thompson · 11 years ago
  20. f4585af Move publisherPublicKeyDigest and keyLocator from MetaInfo to Signature. by Jeff Thompson · 11 years ago
  21. fec716d Renamed SignedInfo to MetaInfo (except for encoding binary XML). by Jeff Thompson · 11 years ago
  22. 1656e6a Code style: Declare (Type& value) instead of (Type &value) by Jeff Thompson · 11 years ago
  23. d1427fb Cody style: Replace init with initialize. by Jeff Thompson · 11 years ago
  24. 7a57f67 Fix bug in getEntryForRegisteredPrefix: properly check size of registeredPrefixTable_. by Jeff Thompson · 11 years ago
  25. 9cc4be4 Finish implementing registerPrefix. by Jeff Thompson · 11 years ago
  26. 7a67cb6 Move key-chain to security subdirectory. by Jeff Thompson · 11 years ago
  27. fb29cda Move the default parameters for methods from Node to Face. by Jeff Thompson · 11 years ago
  28. 86507bc Added preliminary code for registerPrefix. by Jeff Thompson · 11 years ago
  29. 4fe4551 Added expressInterest which takes the Interest directly. by Jeff Thompson · 11 years ago
  30. 7aec025 Major change: in expressInterest, remove the Closure class and use function objects for onData and onTimeout. by Jeff Thompson · 11 years ago
  31. 10e3438 Change Transport connect to use the new ConnectionInfo object. by Jeff Thompson · 11 years ago
  32. a405697 In Transport, added getIsConnected by Jeff Thompson · 11 years ago
  33. b09fcc1 Fix typo for include node.hpp by Jeff Thompson · 11 years ago
  34. 8b173cc Make onReceivedElement take const unsigned char * by Jeff Thompson · 11 years ago
  35. 48917f0 Update processEvents to check for timeout. Make PitEntry take a const Interest pointer. by Jeff Thompson · 11 years ago
  36. 557b81e Added PitEntry and make expressInterest use the PIT. by Jeff Thompson · 11 years ago
  37. bf50a1a Added Node class, and move most functionality from Face to Node. Make connect take a Node, not a Face. by Jeff Thompson · 11 years ago