http://code.google.com/p/iphonedisk/source/detail?r=101
Deleted:
/trunk/test/loopback_fs_server.cc
/trunk/test/loopback_fs_server.plist
=======================================
--- /trunk/test/loopback_fs_server.cc Sun Mar 28 19:33:04 2010
+++ /dev/null
@@ -1,33 +0,0 @@
-// Author: Allen Porter <al...@thebends.org>
-
-#include <iostream>
-#include <dirent.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <sys/attr.h>
-#include <sys/param.h>
-#include <sys/stat.h>
-#include <sys/statvfs.h>
-#include "proto/fs_service.pb.h"
-#include "rpc/mach_service.h"
-#include "test/loopback_fs_service.h"
-
-using ::rpc::ExportService;
-
-int main(int argc, char* argv[]) {
- if (argc != 2) {
- fprintf(stderr, "Usage: %s <fs service name>\n", argv[0]);
- return 1;
- }
- const std::string& service_name(argv[1]);
- proto::FsService* service = test::NewLoopbackService();
- if (!ExportService(service_name, service)) {
- std::cerr << "Failed to export " << service_name << std::endl;
- delete service;
- return 1;
- }
- delete service;
-
- return 0;
-}
=======================================
--- /trunk/test/loopback_fs_server.plist Sun Mar 28 23:21:23 2010
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd >
-<plist version="1.0">
- <dict>
- <key>Label</key>
- <string>org.thebends.iphonedisk.loopback_fs</string>
- <key>ProgramArguments</key>
- <array>
-
<string>/Users/aporter/Documents/iphonedisk/branches/iphonedisk2/test/loopback_fs_server</string>
- <string>org.thebends.iphonedisk.fs_service_rpc</string>
- </array>
- <key>KeepAlive</key>
- <true/>
- <key>MachServices</key>
- <dict>
- <key>org.thebends.iphonedisk.fs_service_rpc</key>
- <true/>
- </dict>
- <key>Debug</key>
- <true/>
- <key>StandardOutPath</key>
- <string>/tmp/loopback_fs_server.out</string>
- <key>StandardErrorPath</key>
- <string>/tmp/loopback_fs_server.err</string>
- </dict>
-</plist>
-