For now, hard code the host to lioncub.metwi.ucla.edu.
diff --git a/js/ccnxProtocol/components/ccnxProtocolService.js b/js/ccnxProtocol/components/ccnxProtocolService.js
index e4b99a9..f959e25 100644
--- a/js/ccnxProtocol/components/ccnxProtocolService.js
+++ b/js/ccnxProtocol/components/ccnxProtocolService.js
@@ -35,7 +35,8 @@
try {
var requestContent = function(contentListener) {
var interest = aURI.spec.split(":")[1];
- var ndn = new NDN();
+ // 131.179.141.18 is lioncub.metwi.ucla.edu .
+ var ndn = new NDN('131.179.141.18');
var coListener = {
onReceivedContentObject : function(contentObject) {
@@ -43,7 +44,8 @@
var content = "";
var contentType = "text/html";
var contentCharset = "utf-8";
-
+
+ // TODO: Need to check the signature, confirm that the name matches, etc.
if (contentObject.content != null) {
content = DataUtils.toString(contentObject.content);
// TODO: Should look at the returned Name to get contentType. For now,