diff --git a/crypto777/crypto777.sources b/crypto777/crypto777.sources index d4bea08c4..35e3d01c0 100644 --- a/crypto777/crypto777.sources +++ b/crypto777/crypto777.sources @@ -1,44 +1,46 @@ -NANOMSG_CORE = nanosrc/core/global.c nanosrc/core/ep.c nanosrc/core/epbase.c nanosrc/core/pipe.c nanosrc/core/poll.c nanosrc/core/sock.c nanosrc/core/sockbase.c nanosrc/core/symbol.c +NANOSRC = ../crypto777/nanosrc -NANOMSG_DEVICES = nanosrc/devices/device.c nanosrc/devices/tcpmuxd.c +NANOMSG_CORE = $(NANOSRC)/core/global.c $(NANOSRC)/core/ep.c $(NANOSRC)/core/epbase.c $(NANOSRC)/core/pipe.c $(NANOSRC)/core/poll.c $(NANOSRC)/core/sock.c $(NANOSRC)/core/sockbase.c $(NANOSRC)/core/symbol.c -NANOMSG_AIO = nanosrc/aio/ctx.c nanosrc/aio/fsm.c nanosrc/aio/poller.c nanosrc/aio/pool.c nanosrc/aio/timer.c nanosrc/aio/usock.c nanosrc/aio/timerset.c nanosrc/aio/worker.c +NANOMSG_DEVICES = $(NANOSRC)/devices/device.c $(NANOSRC)/devices/tcpmuxd.c -NANOMSG_UTILS = nanosrc/utils/alloc.c nanosrc/utils/atomic.c nanosrc/utils/chunk.c nanosrc/utils/chunkref.c nanosrc/utils/clock.c nanosrc/utils/closefd.c nanosrc/utils/efd.c nanosrc/utils/err.c nanosrc/utils/glock.c nanosrc/utils/hash.c nanosrc/utils/list.c nanosrc/utils/msg.c nanosrc/utils/mutex.c nanosrc/utils/queue.c nanosrc/utils/random.c nanosrc/utils/sem.c nanosrc/utils/sleep.c nanosrc/utils/stopwatch.c nanosrc/utils/thread.c nanosrc/utils/wire.c +NANOMSG_AIO = $(NANOSRC)/aio/ctx.c $(NANOSRC)/aio/fsm.c $(NANOSRC)/aio/poller.c $(NANOSRC)/aio/pool.c $(NANOSRC)/aio/timer.c $(NANOSRC)/aio/usock.c $(NANOSRC)/aio/timerset.c $(NANOSRC)/aio/worker.c -PROTOCOLS_UTILS = nanosrc/protocols/utils/dist.c nanosrc/protocols/utils/excl.c nanosrc/protocols/utils/fq.c nanosrc/protocols/utils/lb.c nanosrc/protocols/utils/priolist.c +NANOMSG_UTILS = $(NANOSRC)/utils/alloc.c $(NANOSRC)/utils/atomic.c $(NANOSRC)/utils/chunk.c $(NANOSRC)/utils/chunkref.c $(NANOSRC)/utils/clock.c $(NANOSRC)/utils/closefd.c $(NANOSRC)/utils/efd.c $(NANOSRC)/utils/err.c $(NANOSRC)/utils/glock.c $(NANOSRC)/utils/hash.c $(NANOSRC)/utils/list.c $(NANOSRC)/utils/msg.c $(NANOSRC)/utils/mutex.c $(NANOSRC)/utils/queue.c $(NANOSRC)/utils/random.c $(NANOSRC)/utils/sem.c $(NANOSRC)/utils/sleep.c $(NANOSRC)/utils/stopwatch.c $(NANOSRC)/utils/thread.c $(NANOSRC)/utils/wire.c -PROTOCOLS_BUS = nanosrc/protocols/bus/bus.c nanosrc/protocols/bus/xbus.c +PROTOCOLS_UTILS = $(NANOSRC)/protocols/utils/dist.c $(NANOSRC)/protocols/utils/excl.c $(NANOSRC)/protocols/utils/fq.c $(NANOSRC)/protocols/utils/lb.c $(NANOSRC)/protocols/utils/priolist.c -PROTOCOLS_PIPELINE = nanosrc/protocols/pipeline/push.c nanosrc/protocols/pipeline/pull.c nanosrc/protocols/pipeline/xpull.c nanosrc/protocols/pipeline/xpush.c +PROTOCOLS_BUS = $(NANOSRC)/protocols/bus/bus.c $(NANOSRC)/protocols/bus/xbus.c -PROTOCOLS_PUBSUB = nanosrc/protocols/pubsub/pub.c nanosrc/protocols/pubsub/sub.c nanosrc/protocols/pubsub/trie.c nanosrc/protocols/pubsub/xpub.c nanosrc/protocols/pubsub/xsub.c +PROTOCOLS_PIPELINE = $(NANOSRC)/protocols/pipeline/push.c $(NANOSRC)/protocols/pipeline/pull.c $(NANOSRC)/protocols/pipeline/xpull.c $(NANOSRC)/protocols/pipeline/xpush.c -PROTOCOLS_PAIR = nanosrc/protocols/pair/pair.c nanosrc/protocols/pair/xpair.c +PROTOCOLS_PUBSUB = $(NANOSRC)/protocols/pubsub/pub.c $(NANOSRC)/protocols/pubsub/sub.c $(NANOSRC)/protocols/pubsub/trie.c $(NANOSRC)/protocols/pubsub/xpub.c $(NANOSRC)/protocols/pubsub/xsub.c -PROTOCOLS_REQREP = nanosrc/protocols/reqrep/req.c nanosrc/protocols/reqrep/rep.c nanosrc/protocols/reqrep/task.c nanosrc/protocols/reqrep/xrep.c nanosrc/protocols/reqrep/xreq.c +PROTOCOLS_PAIR = $(NANOSRC)/protocols/pair/pair.c $(NANOSRC)/protocols/pair/xpair.c -PROTOCOLS_SURVEY = nanosrc/protocols/survey/respondent.c nanosrc/protocols/survey/surveyor.c nanosrc/protocols/survey/xrespondent.c nanosrc/protocols/survey/xsurveyor.c +PROTOCOLS_REQREP = $(NANOSRC)/protocols/reqrep/req.c $(NANOSRC)/protocols/reqrep/rep.c $(NANOSRC)/protocols/reqrep/task.c $(NANOSRC)/protocols/reqrep/xrep.c $(NANOSRC)/protocols/reqrep/xreq.c -TRANSPORTS_UTILS = nanosrc/transports/utils/backoff.c nanosrc/transports/utils/dns.c nanosrc/transports/utils/iface.c nanosrc/transports/utils/literal.c nanosrc/transports/utils/port.c nanosrc/transports/utils/streamhdr.c nanosrc/transports/utils/base64.c +PROTOCOLS_SURVEY = $(NANOSRC)/protocols/survey/respondent.c $(NANOSRC)/protocols/survey/surveyor.c $(NANOSRC)/protocols/survey/xrespondent.c $(NANOSRC)/protocols/survey/xsurveyor.c -TRANSPORTS_IPC = nanosrc/transports/ipc/aipc.c nanosrc/transports/ipc/bipc.c nanosrc/transports/ipc/cipc.c nanosrc/transports/ipc/ipc.c nanosrc/transports/ipc/sipc.c +TRANSPORTS_UTILS = $(NANOSRC)/transports/utils/backoff.c $(NANOSRC)/transports/utils/dns.c $(NANOSRC)/transports/utils/iface.c $(NANOSRC)/transports/utils/literal.c $(NANOSRC)/transports/utils/port.c $(NANOSRC)/transports/utils/streamhdr.c $(NANOSRC)/transports/utils/base64.c -TRANSPORTS_TCP = nanosrc/transports/tcp/atcp.c nanosrc/transports/tcp/btcp.c nanosrc/transports/tcp/ctcp.c nanosrc/transports/tcp/stcp.c nanosrc/transports/tcp/tcp.c +TRANSPORTS_IPC = $(NANOSRC)/transports/ipc/aipc.c $(NANOSRC)/transports/ipc/bipc.c $(NANOSRC)/transports/ipc/cipc.c $(NANOSRC)/transports/ipc/ipc.c $(NANOSRC)/transports/ipc/sipc.c -TRANSPORTS_INPROC = nanosrc/transports/inproc/binproc.c nanosrc/transports/inproc/cinproc.c nanosrc/transports/inproc/inproc.c nanosrc/transports/inproc/ins.c nanosrc/transports/inproc/msgqueue.c nanosrc/transports/inproc/sinproc.c +TRANSPORTS_TCP = $(NANOSRC)/transports/tcp/atcp.c $(NANOSRC)/transports/tcp/btcp.c $(NANOSRC)/transports/tcp/ctcp.c $(NANOSRC)/transports/tcp/stcp.c $(NANOSRC)/transports/tcp/tcp.c -TRANSPORTS_WS = nanosrc/transports/ws/aws.c nanosrc/transports/ws/bws.c nanosrc/transports/ws/cws.c nanosrc/transports/ws/sws.c nanosrc/transports/ws/ws.c nanosrc/transports/ws/ws_handshake.c nanosrc/transports/ws/sha1.c +TRANSPORTS_INPROC = $(NANOSRC)/transports/inproc/binproc.c $(NANOSRC)/transports/inproc/cinproc.c $(NANOSRC)/transports/inproc/inproc.c $(NANOSRC)/transports/inproc/ins.c $(NANOSRC)/transports/inproc/msgqueue.c $(NANOSRC)/transports/inproc/sinproc.c -TRANSPORTS_TCPMUX = nanosrc/transports/tcpmux/atcpmux.c nanosrc/transports/tcpmux/btcpmux.c nanosrc/transports/tcpmux/ctcpmux.c nanosrc/transports/tcpmux/stcpmux.c nanosrc/transports/tcpmux/tcpmux.c +TRANSPORTS_WS = $(NANOSRC)/transports/ws/aws.c $(NANOSRC)/transports/ws/bws.c $(NANOSRC)/transports/ws/cws.c $(NANOSRC)/transports/ws/sws.c $(NANOSRC)/transports/ws/ws.c $(NANOSRC)/transports/ws/ws_handshake.c $(NANOSRC)/transports/ws/sha1.c + +TRANSPORTS_TCPMUX = $(NANOSRC)/transports/tcpmux/atcpmux.c $(NANOSRC)/transports/tcpmux/btcpmux.c $(NANOSRC)/transports/tcpmux/ctcpmux.c $(NANOSRC)/transports/tcpmux/stcpmux.c $(NANOSRC)/transports/tcpmux/tcpmux.c NANOMSG_PROTOCOLS = $(PROTOCOLS_UTILS) $(PROTOCOLS_PUBSUB) $(PROTOCOLS_PAIR) $(PROTOCOLS_REQREP) $(PROTOCOLS_BUS) $(PROTOCOLS_PIPELINE) $(PROTOCOLS_SURVEY) -NANOMSG_TRANSPORTS = $(TRANSPORTS_UTILS) $(TRANSPORTS_TCP) +NANOMSG_TRANSPORTS = $(TRANSPORTS_UTILS) $(TRANSPORTS_TCP) $(TRANSPORTS_IPC) $(TRANSPORTS_INPROC) NANOMSG = $(NANOMSG_CORE) $(NANOMSG_AIO) $(NANOMSG_UTILS) $(NANOMSG_DEVICES) $(NANOMSG_TRANSPORTS) $(NANOMSG_PROTOCOLS) JPEG_SRCS := ../crypto777/jpeg/jaricom.c ../crypto777/jpeg/jcapimin.c ../crypto777/jpeg/jcapistd.c ../crypto777/jpeg/jcarith.c ../crypto777/jpeg/jccoefct.c ../crypto777/jpeg/jccolor.c ../crypto777/jpeg/jcdctmgr.c ../crypto777/jpeg/jchuff.c ../crypto777/jpeg/jcinit.c ../crypto777/jpeg/jcmainct.c ../crypto777/jpeg/jcmarker.c ../crypto777/jpeg/jcmaster.c ../crypto777/jpeg/jcomapi.c ../crypto777/jpeg/jcparam.c ../crypto777/jpeg/jcprepct.c ../crypto777/jpeg/jcsample.c ../crypto777/jpeg/jctrans.c ../crypto777/jpeg/jdapimin.c ../crypto777/jpeg/jdapistd.c ../crypto777/jpeg/jdarith.c ../crypto777/jpeg/jdatadst.c ../crypto777/jpeg/jdatasrc.c ../crypto777/jpeg/jdcoefct.c ../crypto777/jpeg/jdcolor.c ../crypto777/jpeg/jddctmgr.c ../crypto777/jpeg/jdhuff.c ../crypto777/jpeg/jdinput.c ../crypto777/jpeg/jdmainct.c ../crypto777/jpeg/jdmarker.c ../crypto777/jpeg/jdmaster.c ../crypto777/jpeg/jdmerge.c ../crypto777/jpeg/jdpostct.c ../crypto777/jpeg/jdsample.c ../crypto777/jpeg/jdtrans.c ../crypto777/jpeg/jerror.c ../crypto777/jpeg/jfdctflt.c ../crypto777/jpeg/jfdctfst.c ../crypto777/jpeg/jfdctint.c ../crypto777/jpeg/jidctflt.c ../crypto777/jpeg/jidctfst.c ../crypto777/jpeg/jidctint.c ../crypto777/jpeg/jquant1.c ../crypto777/jpeg/jquant2.c ../crypto777/jpeg/jutils.c ../crypto777/jpeg/jmemmgr.c ../crypto777/jpeg/jmemnobs.c -CRYPTO777_SRCS := ../crypto777/ccgi.c ../crypto777/cJSON.c ../crypto777/iguana_utils.c ../crypto777/OS_nonportable.c ../crypto777/curve25519-donna.c ../crypto777/inet.c ../crypto777/OS_portable.c ../crypto777/curve25519.c ../crypto777/libgfshare.c ../crypto777/OS_time.c ../crypto777/hmac_sha512.c ../crypto777/ramcoder.c ../crypto777/SaM.c ../crypto777/iguana_OS.c ../crypto777/iguana_serdes.c $(JPEG_SRCS) $(NANOMSG) +CRYPTO777_SRCS := ../crypto777/ccgi.c ../crypto777/cJSON.c ../crypto777/iguana_utils.c ../crypto777/OS_nonportable.c ../crypto777/curve25519-donna.c ../crypto777/inet.c ../crypto777/OS_portable.c ../crypto777/curve25519.c ../crypto777/libgfshare.c ../crypto777/OS_time.c ../crypto777/hmac_sha512.c ../crypto777/ramcoder.c ../crypto777/SaM.c ../crypto777/iguana_OS.c ../crypto777/iguana_serdes.c $(JPEG_SRCS) # $(NANOMSG) diff --git a/crypto777/iguana_utils.c b/crypto777/iguana_utils.c index e041a4c66..47af03ad9 100755 --- a/crypto777/iguana_utils.c +++ b/crypto777/iguana_utils.c @@ -603,7 +603,7 @@ int32_t nn_base64_decode (const char *in, size_t in_len,uint8_t *out, size_t out ch = DECODEMAP [(uint32_t)in [ii]]; - /* Discard invalid characters as per RFC 2045. */ + // Discard invalid characters as per RFC 2045. if (ch == 0xFF) break; @@ -653,7 +653,7 @@ int32_t nn_base64_encode (const uint8_t *in, size_t in_len,char *out, size_t out out [io++] = ENCODEMAP [v & 63]; } - /* Pad to a multiple of 3. */ + // Pad to a multiple of 3 while (io & 3) { if (io >= out_len) return -ENOBUFS; @@ -667,6 +667,7 @@ int32_t nn_base64_encode (const uint8_t *in, size_t in_len,char *out, size_t out return io; } + /* NXT address converter, Ported from original javascript (nxtchg) diff --git a/crypto777/nanosrc/aio/worker_posix.c b/crypto777/nanosrc/aio/worker_posix.c index dabee1403..a2662d078 100755 --- a/crypto777/nanosrc/aio/worker_posix.c +++ b/crypto777/nanosrc/aio/worker_posix.c @@ -98,31 +98,33 @@ void nn_worker_task_term (struct nn_worker_task *self) nn_queue_item_term (&self->item); } +#include int nn_worker_init(struct nn_worker *self) { int32_t rc; - //PostMessage("nn_worker_init %p\n",self); + PNACL_message("nn_worker_init %p\n",self); + sleep(1); rc = nn_efd_init(&self->efd); - //PostMessage("efd init: rc.%d\n",rc); + PNACL_message("efd init: rc.%d\n",rc); if ( rc < 0 ) return rc; - //PostMessage("nn_mutex_init\n"); + PNACL_message("nn_mutex_init\n"); nn_mutex_init(&self->sync); - //PostMessage("nn_queue_init\n"); + PNACL_message("nn_queue_init\n"); nn_queue_init(&self->tasks); - //PostMessage("nn_queue_item_init\n"); + PNACL_message("nn_queue_item_init\n"); nn_queue_item_init(&self->stop); - //PostMessage("nn_poller_init\n"); + PNACL_message("nn_poller_init\n"); nn_poller_init(&self->poller); - //PostMessage("nn_poller_add\n"); + PNACL_message("nn_poller_add\n"); nn_poller_add(&self->poller,nn_efd_getfd(&self->efd),&self->efd_hndl); - //PostMessage("nn_poller_set_in\n"); + PNACL_message("nn_poller_set_in\n"); nn_poller_set_in(&self->poller, &self->efd_hndl); - //PostMessage("nn_timerset_init\n"); + PNACL_message("nn_timerset_init\n"); nn_timerset_init(&self->timerset); - //PostMessage("nn_thread_init\n"); + PNACL_message("nn_thread_init\n"); nn_thread_init(&self->thread,nn_worker_routine, self); - //PostMessage("finished nn_worker_init\n"); + PNACL_message("finished nn_worker_init\n"); return 0; } @@ -172,7 +174,7 @@ static void nn_worker_routine (void *arg) struct nn_worker_task *task; struct nn_worker_fd *fd; struct nn_worker_timer *timer; - //PostMessage("nn_worker_routine started\n"); + PNACL_message("nn_worker_routine started\n"); self = (struct nn_worker*) arg; while ( 1 ) // Infinite loop. It will be interrupted only when the object is shut down. { @@ -184,7 +186,7 @@ static void nn_worker_routine (void *arg) rc = nn_timerset_event(&self->timerset, &thndl); if ( rc == -EAGAIN ) break; - //PostMessage("nn_worker process expired user\n"); + PNACL_message("nn_worker process expired user\n"); errnum_assert(rc == 0, -rc); timer = nn_cont(thndl, struct nn_worker_timer, hndl); nn_ctx_enter(timer->owner->ctx); @@ -196,7 +198,7 @@ static void nn_worker_routine (void *arg) rc = nn_poller_event(&self->poller,&pevent,&phndl); // Get next poller event, such as IN or OUT if ( nn_slow(rc == -EAGAIN) ) break; - //PostMessage("nn_worker process all events from the poller\n"); + PNACL_message("nn_worker process all events from the poller\n"); if ( phndl == &self->efd_hndl ) // If there are any new incoming worker tasks, process them { nn_assert (pevent == NN_POLLER_IN); @@ -211,14 +213,14 @@ static void nn_worker_routine (void *arg) item = nn_queue_pop(&tasks); // Next worker task if ( nn_slow(!item) ) break; - //PostMessage("nn_worker next worker task\n"); + PNACL_message("nn_worker next worker task\n"); if ( nn_slow(item == &self->stop) ) // If the worker thread is asked to stop, do so { nn_queue_term(&tasks); return; } // It's a user-defined task. Notify the user that it has arrived in the worker thread - //PostMessage("nn_worker user defined task\n"); + PNACL_message("nn_worker user defined task\n"); task = nn_cont(item,struct nn_worker_task,item); nn_ctx_enter(task->owner->ctx); nn_fsm_feed(task->owner,task->src,NN_WORKER_TASK_EXECUTE,task); @@ -227,15 +229,15 @@ static void nn_worker_routine (void *arg) nn_queue_term (&tasks); continue; } - //PostMessage("nn_worker true i/o, invoke handler\n"); + PNACL_message("nn_worker true i/o, invoke handler\n"); fd = nn_cont(phndl,struct nn_worker_fd,hndl); // It's a true I/O event. Invoke the handler - //PostMessage("nn_worker true i/o, fd.%p\n",fd); + PNACL_message("nn_worker true i/o, fd.%p\n",fd); nn_ctx_enter(fd->owner->ctx); - //PostMessage("nn_worker true i/o, after nn_ctx_enter\n"); + PNACL_message("nn_worker true i/o, after nn_ctx_enter\n"); nn_fsm_feed(fd->owner,fd->src,pevent,fd); - //PostMessage("nn_worker true i/o, after nn_fsm_feed leave.%p\n",fd->owner->ctx); + PNACL_message("nn_worker true i/o, after nn_fsm_feed leave.%p\n",fd->owner->ctx); nn_ctx_leave(fd->owner->ctx); - //PostMessage("nn_worker true i/o, after nn_ctx_leave\n"); + PNACL_message("nn_worker true i/o, after nn_ctx_leave\n"); } } } diff --git a/crypto777/nanosrc/core/global.c b/crypto777/nanosrc/core/global.c index 8956dba48..0d457b208 100755 --- a/crypto777/nanosrc/core/global.c +++ b/crypto777/nanosrc/core/global.c @@ -191,7 +191,19 @@ static void nn_global_shutdown (struct nn_fsm *self,int32_t src,int32_t type,voi int32_t nn_errno(void) { return nn_err_errno(); } const char *nn_strerror(int32_t errnum) { return nn_err_strerror(errnum); } +static void nn_global_add_transport (struct nn_transport *transport) +{ + if (transport->init) + transport->init (); + nn_list_insert (&SELF.transports, &transport->item,nn_list_end (&SELF.transports)); +} +static void nn_global_add_socktype (struct nn_socktype *socktype) +{ + PNACL_message("add socktype %p -> %p\n",socktype,&SELF.socktypes); + nn_list_insert (&SELF.socktypes, &socktype->item,nn_list_end (&SELF.socktypes)); + PNACL_message("added socktype %p -> %p\n",socktype,&SELF.socktypes); +} void nn_global_init (void) { int32_t i,rc; char *envvar,*addr; @@ -205,15 +217,16 @@ void nn_global_init (void) nn_assert (LOBYTE (data.wVersion) == 2 && HIBYTE (data.wVersion) == 2); #endif + PNACL_message("nn_global_init\n"); nn_alloc_init(); // Initialise the memory allocation subsystem nn_random_seed(); // Seed the pseudo-random number generator // Allocate the global table of SP sockets. - SELF.socks = nn_alloc((sizeof (struct nn_sock*) * NN_MAX_SOCKETS) + (sizeof (uint16_t) * NN_MAX_SOCKETS), "socket table"); + SELF.socks = nn_alloc((sizeof (struct nn_sock *) * NN_MAX_SOCKETS) + (sizeof (uint16_t) * NN_MAX_SOCKETS), "socket table"); alloc_assert (SELF.socks); for (i=0; iinit) - transport->init (); - nn_list_insert (&SELF.transports, &transport->item, - nn_list_end (&SELF.transports)); -} - -static void nn_global_add_socktype (struct nn_socktype *socktype) -{ - nn_list_insert (&SELF.socktypes, &socktype->item, - nn_list_end (&SELF.socktypes)); -} static void nn_global_submit_counter (int i, struct nn_sock *s, char *name, uint64_t value) diff --git a/crypto777/nanosrc/core/pipe.c b/crypto777/nanosrc/core/pipe.c index 788988bd8..2b674db44 100755 --- a/crypto777/nanosrc/core/pipe.c +++ b/crypto777/nanosrc/core/pipe.c @@ -58,7 +58,7 @@ void nn_pipebase_init(struct nn_pipebase *self,const struct nn_pipebase_vfptr *v memcpy(&self->options,&epbase->ep->options,sizeof(struct nn_ep_options)); nn_fsm_event_init(&self->in); nn_fsm_event_init(&self->out); - //printf("pipebase_init vfptr.%p recv.%p rcvprio.%d\n",vfptr,vfptr->recv,self->options.rcvprio); + PNACL_message("pipebase_init vfptr.%p recv.%p rcvprio.%d\n",vfptr,vfptr->recv,self->options.rcvprio); } void nn_pipebase_term (struct nn_pipebase *self) @@ -78,7 +78,7 @@ int nn_pipebase_start (struct nn_pipebase *self) self->instate = NN_PIPEBASE_INSTATE_ASYNC; self->outstate = NN_PIPEBASE_OUTSTATE_IDLE; rc = nn_sock_add(self->sock,(struct nn_pipe *)self); - //printf("nn_pipebase_start self.%p rc.%d\n",self,rc); + PNACL_message("nn_pipebase_start self.%p rc.%d\n",self,rc); if ( nn_slow(rc < 0) ) { self->state = NN_PIPEBASE_STATE_FAILED; @@ -98,7 +98,7 @@ void nn_pipebase_stop(struct nn_pipebase *self) void nn_pipebase_received(struct nn_pipebase *self) { - //printf("nn_pipebase_received\n"); + PNACL_message("nn_pipebase_received\n"); if ( nn_fast(self->instate == NN_PIPEBASE_INSTATE_RECEIVING) ) { self->instate = NN_PIPEBASE_INSTATE_RECEIVED; @@ -196,7 +196,7 @@ int nn_pipe_recv(struct nn_pipe *self,struct nn_msg *msg) pipebase = (struct nn_pipebase*) self; nn_assert (pipebase->instate == NN_PIPEBASE_INSTATE_IDLE); pipebase->instate = NN_PIPEBASE_INSTATE_RECEIVING; - //printf("call pipebase recv\n"); + PNACL_message("call pipebase recv\n"); rc = pipebase->vfptr->recv (pipebase,msg); errnum_assert (rc >= 0, -rc); if ( nn_fast(pipebase->instate == NN_PIPEBASE_INSTATE_RECEIVED) ) diff --git a/crypto777/nanosrc/core/sock.c b/crypto777/nanosrc/core/sock.c index 4a1c35b95..6ba4bf5b1 100755 --- a/crypto777/nanosrc/core/sock.c +++ b/crypto777/nanosrc/core/sock.c @@ -478,7 +478,7 @@ int nn_sock_add_ep(struct nn_sock *self,struct nn_transport *transport,int32_t b { int rc,eid; struct nn_ep *ep; nn_ctx_enter (&self->ctx); - //if ( (ep= nn_find_ep(self,0,addr,transport,bind)) == NULL ) // The endpoint doesn't exist + if ( (ep= nn_find_ep(self,0,addr,transport,bind)) == NULL ) // The endpoint doesn't exist { ep = nn_alloc(sizeof(struct nn_ep),"endpoint"); // Instantiate the endpoint rc = nn_ep_init(ep,NN_SOCK_SRC_EP,self,self->eid,transport,bind,addr); @@ -489,11 +489,11 @@ int nn_sock_add_ep(struct nn_sock *self,struct nn_transport *transport,int32_t b return rc; } nn_ep_start(ep); - //PNACL_message("ep sock.(%s) started %s://(%s) bind.%d\n",self->socket_name,transport->name,addr,bind); + PNACL_message("ep sock.(%s) started %s://(%s) bind.%d\n",self->socket_name,transport->name,addr,bind); eid = self->eid++; // Increase the endpoint ID for the next endpoint nn_list_insert(&self->eps,&ep->item,nn_list_end(&self->eps)); // Add to the list of active endpoints nn_ctx_leave (&self->ctx); - } //else PNACL_message("self->sock.(%s) %p already has (%s)\n",self->socket_name,self->sockbase->sock,addr); + } else PNACL_message("self->sock.(%s) %p already has (%s)\n",self->socket_name,self->sockbase->sock,addr); return(ep->eid); } diff --git a/crypto777/nanosrc/nn.h b/crypto777/nanosrc/nn.h index dfc64f8fd..3d6e7c598 100755 --- a/crypto777/nanosrc/nn.h +++ b/crypto777/nanosrc/nn.h @@ -391,5 +391,12 @@ NN_EXPORT int nn_tcpmuxd (int port); } #endif +#include "pair.h" +#include "bus.h" +#include "pubsub.h" +#include "reqrep.h" +#include "survey.h" +#include "pipeline.h" + #endif diff --git a/crypto777/nanosrc/nn_config.h b/crypto777/nanosrc/nn_config.h index 03023e7cc..e3f132847 100755 --- a/crypto777/nanosrc/nn_config.h +++ b/crypto777/nanosrc/nn_config.h @@ -32,8 +32,8 @@ // need one of following 3, listed in order of precedence, used by efd* //#define NN_HAVE_EVENTFD 1 -#define NN_HAVE_PIPE 1 -//#define NN_HAVE_SOCKETPAIR 1 +//#define NN_HAVE_PIPE 1 +#define NN_HAVE_SOCKETPAIR 1 // need one of following 3, listed in order of precedence, used by poller* #define NN_USE_POLL 1 @@ -44,7 +44,7 @@ #define NN_USE_LITERAL_IFADDR 1 #define NN_HAVE_STDINT 1 -#define NN_HAVE_MSG_CONTROL 1 +#define NN_HAVE_MSG_CONTROL 0 //#define STANDALONE 1 #ifdef __PNACL diff --git a/crypto777/nanosrc/utils/efd_pipe.c b/crypto777/nanosrc/utils/efd_pipe.c index a9614cca1..ddce06119 100755 --- a/crypto777/nanosrc/utils/efd_pipe.c +++ b/crypto777/nanosrc/utils/efd_pipe.c @@ -32,16 +32,16 @@ int nn_efd_init(struct nn_efd *self) { - int rc; - int flags; - int p [2]; - //PostMessage("inside efd_init: pipe\n"); + int rc,flags,p[2]; + PNACL_message("inside efd_init: pipe\n"); + sleep(1); #if defined NN_HAVE_PIPE2 rc = pipe2(p, O_NONBLOCK | O_CLOEXEC); #else rc = pipe(p); #endif - //PostMessage("rc efd_init: %d\n",rc); + PNACL_message("rc efd_init: %d\n",rc); + sleep(1); if (rc != 0 && (errno == EMFILE || errno == ENFILE)) return -EMFILE; errno_assert (rc == 0); @@ -50,20 +50,20 @@ int nn_efd_init(struct nn_efd *self) #if !defined NN_HAVE_PIPE2 && defined FD_CLOEXEC rc = fcntl (self->r, F_SETFD, FD_CLOEXEC); - //PostMessage("pipe efd_init: F_SETFDr rc %d\n",rc); + PNACL_message("pipe efd_init: F_SETFDr rc %d\n",rc); errno_assert(rc != -1); rc = fcntl(self->w, F_SETFD, FD_CLOEXEC); - //PostMessage("pipe efd_init: F_SETFDw rc %d\n",rc); + PNACL_message("pipe efd_init: F_SETFDw rc %d\n",rc); errno_assert(rc != -1); #endif #if !defined NN_HAVE_PIPE2 flags = fcntl(self->r, F_GETFL, 0); - //PostMessage("pipe efd_init: flags %d\n",flags); + PNACL_message("pipe efd_init: flags %d\n",flags); if ( flags == -1 ) flags = 0; rc = fcntl(self->r, F_SETFL, flags | O_NONBLOCK); - //PostMessage("pipe efd_init: rc %d flags.%d\n",rc,flags); + PNACL_message("pipe efd_init: rc %d flags.%d\n",rc,flags); errno_assert (rc != -1); #endif diff --git a/crypto777/nanosrc/utils/efd_socketpair.c b/crypto777/nanosrc/utils/efd_socketpair.c index 2d103eb0e..aba164fa7 100755 --- a/crypto777/nanosrc/utils/efd_socketpair.c +++ b/crypto777/nanosrc/utils/efd_socketpair.c @@ -36,11 +36,11 @@ int nn_efd_init (struct nn_efd *self) int flags; int sp [2]; -//#if defined SOCK_CLOEXEC -// rc = socketpair (AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sp); -//#else +#if defined SOCK_CLOEXEC + rc = socketpair (AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sp); +#else rc = socketpair (AF_UNIX, SOCK_STREAM, 0, sp); -//#endif +#endif if (rc != 0 && (errno == EMFILE || errno == ENFILE)) return -EMFILE; errno_assert (rc == 0); diff --git a/crypto777/nanosrc/utils/err.c b/crypto777/nanosrc/utils/err.c index c2ecded10..6f5bc42a6 100755 --- a/crypto777/nanosrc/utils/err.c +++ b/crypto777/nanosrc/utils/err.c @@ -112,7 +112,7 @@ const char *nn_err_strerror(int32_t errnum) #pragma warning (disable:4996) #endif PNACL_message("nanomsg: errno.%d (%s)\n",errnum,strerror(errnum)); - //getchar(); + getchar(); return strerror (errnum); #if defined _MSC_VER #pragma warning (pop) diff --git a/crypto777/nanosrc/utils/thread_posix.c b/crypto777/nanosrc/utils/thread_posix.c index 2e954df6d..93c81b6cb 100755 --- a/crypto777/nanosrc/utils/thread_posix.c +++ b/crypto777/nanosrc/utils/thread_posix.c @@ -30,7 +30,7 @@ static void *nn_thread_main_routine(void *arg) { struct nn_thread *self; self = (struct nn_thread *)arg; - //PostMessage("nn_thread_main_routine arg.%p self->routine(%p) at %p\n",arg,self->arg,self->routine); + PNACL_message("nn_thread_main_routine arg.%p self->routine(%p) at %p\n",arg,self->arg,self->routine); self->routine(self->arg); // Run the thread routine return NULL; } @@ -47,7 +47,7 @@ void nn_thread_init(struct nn_thread *self,nn_thread_routine *routine,void *arg) { int32_t rc; // No signals should be processed by this thread. The library doesn't use signals and thus all the signals should be delivered to application threads, not to worker threads. - //PostMessage("nn_thread_init routine.%p arg.%p\n",routine,arg); + PNACL_message("nn_thread_init routine.%p arg.%p\n",routine,arg); self->routine = routine; self->arg = arg; rc = pthread_create(&self->handle,NULL,nn_thread_main_routine,(void *)self); diff --git a/crypto777/pnacl/Release/__/crypto777/OS_nonportable.deps b/crypto777/pnacl/Release/__/crypto777/OS_nonportable.deps deleted file mode 100644 index c5c633df2..000000000 --- a/crypto777/pnacl/Release/__/crypto777/OS_nonportable.deps +++ /dev/null @@ -1,33 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/OS_nonportable.o: \ - ../crypto777/OS_nonportable.c ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -: -../crypto777/OS_nonportable.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/OS_portable.deps b/crypto777/pnacl/Release/__/crypto777/OS_portable.deps deleted file mode 100644 index 053577288..000000000 --- a/crypto777/pnacl/Release/__/crypto777/OS_portable.deps +++ /dev/null @@ -1,32 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/OS_portable.o: ../crypto777/OS_portable.c \ - ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -../crypto777/OS_portable.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/OS_time.deps b/crypto777/pnacl/Release/__/crypto777/OS_time.deps deleted file mode 100644 index 3671688d1..000000000 --- a/crypto777/pnacl/Release/__/crypto777/OS_time.deps +++ /dev/null @@ -1,32 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/OS_time.o: ../crypto777/OS_time.c \ - ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -../crypto777/OS_time.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/SaM.deps b/crypto777/pnacl/Release/__/crypto777/SaM.deps deleted file mode 100644 index 3d4cdbfd9..000000000 --- a/crypto777/pnacl/Release/__/crypto777/SaM.deps +++ /dev/null @@ -1,7 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/SaM.o: ../crypto777/SaM.c \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/curve25519.h -../crypto777/SaM.c: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/curve25519.h: diff --git a/crypto777/pnacl/Release/__/crypto777/cJSON.deps b/crypto777/pnacl/Release/__/crypto777/cJSON.deps deleted file mode 100644 index c05807da1..000000000 --- a/crypto777/pnacl/Release/__/crypto777/cJSON.deps +++ /dev/null @@ -1,30 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/cJSON.o: ../crypto777/cJSON.c \ - ../crypto777/../includes/cJSON.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - ../includes/../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h -../crypto777/cJSON.c: -../crypto777/../includes/cJSON.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -../includes/../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: diff --git a/crypto777/pnacl/Release/__/crypto777/ccgi.deps b/crypto777/pnacl/Release/__/crypto777/ccgi.deps deleted file mode 100644 index 1b590afce..000000000 --- a/crypto777/pnacl/Release/__/crypto777/ccgi.deps +++ /dev/null @@ -1,5 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/ccgi.o: ../crypto777/ccgi.c \ - ../crypto777/../includes/ccgi.h -../crypto777/ccgi.c: -../crypto777/../includes/ccgi.h: diff --git a/crypto777/pnacl/Release/__/crypto777/curve25519-donna.deps b/crypto777/pnacl/Release/__/crypto777/curve25519-donna.deps deleted file mode 100644 index c5c0d5748..000000000 --- a/crypto777/pnacl/Release/__/crypto777/curve25519-donna.deps +++ /dev/null @@ -1,8 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/curve25519-donna.o: \ - ../crypto777/curve25519-donna.c ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h -: -../crypto777/curve25519-donna.c: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: diff --git a/crypto777/pnacl/Release/__/crypto777/curve25519.deps b/crypto777/pnacl/Release/__/crypto777/curve25519.deps deleted file mode 100644 index 89b04d8ac..000000000 --- a/crypto777/pnacl/Release/__/crypto777/curve25519.deps +++ /dev/null @@ -1,7 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/curve25519.o: ../crypto777/curve25519.c \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h -../crypto777/curve25519.c: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: diff --git a/crypto777/pnacl/Release/__/crypto777/dir.stamp b/crypto777/pnacl/Release/__/crypto777/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/__/crypto777/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/__/crypto777/hmac_sha512.deps b/crypto777/pnacl/Release/__/crypto777/hmac_sha512.deps deleted file mode 100644 index 69554621b..000000000 --- a/crypto777/pnacl/Release/__/crypto777/hmac_sha512.deps +++ /dev/null @@ -1,83 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/hmac_sha512.o: ../crypto777/hmac_sha512.c \ - ../crypto777/hmac/crypt_argchk.c ../crypto777/hmac/tomcrypt.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/hmac/tomcrypt_custom.h ../crypto777/hmac/tomcrypt_cfg.h \ - ../crypto777/hmac/tomcrypt_macros.h \ - ../crypto777/hmac/tomcrypt_cipher.h ../crypto777/hmac/tomcrypt_hash.h \ - ../crypto777/hmac/tomcrypt_mac.h ../crypto777/hmac/tomcrypt_prng.h \ - ../crypto777/hmac/tomcrypt_pk.h ../crypto777/hmac/tomcrypt_math.h \ - ../crypto777/hmac/tomcrypt_misc.h ../crypto777/hmac/tomcrypt_argchk.h \ - ../crypto777/hmac/tomcrypt_pkcs.h ../crypto777/hmac/hash_memory.c \ - ../crypto777/hmac/hmac_init.c ../crypto777/hmac/hmac_process.c \ - ../crypto777/hmac/hmac_done.c ../crypto777/hmac/hmac_file.c \ - ../crypto777/hmac/hmac_memory.c ../crypto777/hmac/rmd128.c \ - ../crypto777/hmac/rmd160.c ../crypto777/hmac/rmd256.c \ - ../crypto777/hmac/rmd320.c ../crypto777/hmac/tiger.c \ - ../crypto777/hmac/md2.c ../crypto777/hmac/md4.c \ - ../crypto777/hmac/md5.c ../crypto777/hmac/../OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h ../crypto777/hmac/sha1.c \ - ../crypto777/hmac/whirl.c ../crypto777/hmac/whirltab.c \ - ../crypto777/hmac/sha224.c ../crypto777/hmac/sha256.c \ - ../crypto777/hmac/sha384.c ../crypto777/hmac/sha512.c -../crypto777/hmac_sha512.c: -../crypto777/hmac/crypt_argchk.c: -../crypto777/hmac/tomcrypt.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/hmac/tomcrypt_custom.h: -../crypto777/hmac/tomcrypt_cfg.h: -../crypto777/hmac/tomcrypt_macros.h: -../crypto777/hmac/tomcrypt_cipher.h: -../crypto777/hmac/tomcrypt_hash.h: -../crypto777/hmac/tomcrypt_mac.h: -../crypto777/hmac/tomcrypt_prng.h: -../crypto777/hmac/tomcrypt_pk.h: -../crypto777/hmac/tomcrypt_math.h: -../crypto777/hmac/tomcrypt_misc.h: -../crypto777/hmac/tomcrypt_argchk.h: -../crypto777/hmac/tomcrypt_pkcs.h: -../crypto777/hmac/hash_memory.c: -../crypto777/hmac/hmac_init.c: -../crypto777/hmac/hmac_process.c: -../crypto777/hmac/hmac_done.c: -../crypto777/hmac/hmac_file.c: -../crypto777/hmac/hmac_memory.c: -../crypto777/hmac/rmd128.c: -../crypto777/hmac/rmd160.c: -../crypto777/hmac/rmd256.c: -../crypto777/hmac/rmd320.c: -../crypto777/hmac/tiger.c: -../crypto777/hmac/md2.c: -../crypto777/hmac/md4.c: -../crypto777/hmac/md5.c: -../crypto777/hmac/../OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: -../crypto777/hmac/sha1.c: -../crypto777/hmac/whirl.c: -../crypto777/hmac/whirltab.c: -../crypto777/hmac/sha224.c: -../crypto777/hmac/sha256.c: -../crypto777/hmac/sha384.c: -../crypto777/hmac/sha512.c: diff --git a/crypto777/pnacl/Release/__/crypto777/iguana_OS.deps b/crypto777/pnacl/Release/__/crypto777/iguana_OS.deps deleted file mode 100644 index 6b1dbbaa9..000000000 --- a/crypto777/pnacl/Release/__/crypto777/iguana_OS.deps +++ /dev/null @@ -1,32 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/iguana_OS.o: ../crypto777/iguana_OS.c \ - ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -../crypto777/iguana_OS.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/iguana_serdes.deps b/crypto777/pnacl/Release/__/crypto777/iguana_serdes.deps deleted file mode 100644 index c68ab14b4..000000000 --- a/crypto777/pnacl/Release/__/crypto777/iguana_serdes.deps +++ /dev/null @@ -1,32 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/iguana_serdes.o: ../crypto777/iguana_serdes.c \ - ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -../crypto777/iguana_serdes.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/iguana_utils.deps b/crypto777/pnacl/Release/__/crypto777/iguana_utils.deps deleted file mode 100644 index a3d89a84e..000000000 --- a/crypto777/pnacl/Release/__/crypto777/iguana_utils.deps +++ /dev/null @@ -1,59 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/iguana_utils.o: ../crypto777/iguana_utils.c \ - ../crypto777/../iguana/iguana777.h \ - ../crypto777/../iguana/../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h \ - ../crypto777/../iguana/SuperNET.h \ - ../crypto777/../iguana/../includes/nanomsg/nn.h \ - ../crypto777/../iguana/../includes/nanomsg/nn_config.h \ - ../crypto777/../iguana/../includes/nanomsg/pair.h \ - ../crypto777/../iguana/../includes/nanomsg/bus.h \ - ../crypto777/../iguana/../includes/nanomsg/pubsub.h \ - ../crypto777/../iguana/../includes/nanomsg/reqrep.h \ - ../crypto777/../iguana/../includes/nanomsg/survey.h \ - ../crypto777/../iguana/../includes/nanomsg/pipeline.h \ - ../crypto777/../iguana/../includes/iguana_api.h \ - ../includes/iguana_apidefs.h ../includes/iguana_apideclares.h \ - ../includes/iguana_apiundefs.h -../crypto777/iguana_utils.c: -../crypto777/../iguana/iguana777.h: -../crypto777/../iguana/../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: -../crypto777/../iguana/SuperNET.h: -../crypto777/../iguana/../includes/nanomsg/nn.h: -../crypto777/../iguana/../includes/nanomsg/nn_config.h: -../crypto777/../iguana/../includes/nanomsg/pair.h: -../crypto777/../iguana/../includes/nanomsg/bus.h: -../crypto777/../iguana/../includes/nanomsg/pubsub.h: -../crypto777/../iguana/../includes/nanomsg/reqrep.h: -../crypto777/../iguana/../includes/nanomsg/survey.h: -../crypto777/../iguana/../includes/nanomsg/pipeline.h: -../crypto777/../iguana/../includes/iguana_api.h: -../includes/iguana_apidefs.h: -../includes/iguana_apideclares.h: -../includes/iguana_apiundefs.h: diff --git a/crypto777/pnacl/Release/__/crypto777/inet.deps b/crypto777/pnacl/Release/__/crypto777/inet.deps deleted file mode 100644 index 2d6afdbfa..000000000 --- a/crypto777/pnacl/Release/__/crypto777/inet.deps +++ /dev/null @@ -1,32 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/inet.o: ../crypto777/inet.c \ - ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -../crypto777/inet.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/dir.stamp b/crypto777/pnacl/Release/__/crypto777/jpeg/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jaricom.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jaricom.deps deleted file mode 100644 index 34309b621..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jaricom.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jaricom.o: ../crypto777/jpeg/jaricom.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jaricom.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcapimin.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcapimin.deps deleted file mode 100644 index dc35e7394..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcapimin.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcapimin.o: ../crypto777/jpeg/jcapimin.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcapimin.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcapistd.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcapistd.deps deleted file mode 100644 index 7d3378907..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcapistd.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcapistd.o: ../crypto777/jpeg/jcapistd.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcapistd.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcarith.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcarith.deps deleted file mode 100644 index bd19364c3..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcarith.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcarith.o: ../crypto777/jpeg/jcarith.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcarith.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jccoefct.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jccoefct.deps deleted file mode 100644 index 0cf33bdf8..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jccoefct.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jccoefct.o: ../crypto777/jpeg/jccoefct.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jccoefct.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jccolor.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jccolor.deps deleted file mode 100644 index 3f84d9601..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jccolor.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jccolor.o: ../crypto777/jpeg/jccolor.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jccolor.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcdctmgr.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcdctmgr.deps deleted file mode 100644 index 91857c06c..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcdctmgr.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcdctmgr.o: ../crypto777/jpeg/jcdctmgr.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jcdctmgr.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jchuff.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jchuff.deps deleted file mode 100644 index 8127a19d8..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jchuff.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jchuff.o: ../crypto777/jpeg/jchuff.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jchuff.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcinit.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcinit.deps deleted file mode 100644 index 2500a62b5..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcinit.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcinit.o: ../crypto777/jpeg/jcinit.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcinit.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcmainct.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcmainct.deps deleted file mode 100644 index d87c297db..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcmainct.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcmainct.o: ../crypto777/jpeg/jcmainct.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcmainct.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcmarker.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcmarker.deps deleted file mode 100644 index 94cb976a6..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcmarker.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcmarker.o: ../crypto777/jpeg/jcmarker.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcmarker.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcmaster.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcmaster.deps deleted file mode 100644 index f86219a60..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcmaster.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcmaster.o: ../crypto777/jpeg/jcmaster.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcmaster.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcomapi.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcomapi.deps deleted file mode 100644 index 0d6fedfe6..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcomapi.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcomapi.o: ../crypto777/jpeg/jcomapi.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcomapi.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcparam.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcparam.deps deleted file mode 100644 index 25ff503a1..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcparam.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcparam.o: ../crypto777/jpeg/jcparam.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcparam.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcprepct.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcprepct.deps deleted file mode 100644 index d08a7dd0c..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcprepct.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcprepct.o: ../crypto777/jpeg/jcprepct.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcprepct.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jcsample.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jcsample.deps deleted file mode 100644 index 29adb70e4..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jcsample.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jcsample.o: ../crypto777/jpeg/jcsample.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jcsample.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jctrans.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jctrans.deps deleted file mode 100644 index aec261285..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jctrans.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jctrans.o: ../crypto777/jpeg/jctrans.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jctrans.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdapimin.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdapimin.deps deleted file mode 100644 index abb47cfe2..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdapimin.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdapimin.o: ../crypto777/jpeg/jdapimin.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdapimin.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdapistd.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdapistd.deps deleted file mode 100644 index e3bdb8eda..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdapistd.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdapistd.o: ../crypto777/jpeg/jdapistd.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdapistd.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdarith.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdarith.deps deleted file mode 100644 index cdd1aa430..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdarith.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdarith.o: ../crypto777/jpeg/jdarith.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdarith.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdatadst.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdatadst.deps deleted file mode 100644 index eaf9f3e19..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdatadst.deps +++ /dev/null @@ -1,11 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdatadst.o: ../crypto777/jpeg/jdatadst.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdatadst.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdatasrc.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdatasrc.deps deleted file mode 100644 index be0fc4e42..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdatasrc.deps +++ /dev/null @@ -1,11 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdatasrc.o: ../crypto777/jpeg/jdatasrc.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdatasrc.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdcoefct.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdcoefct.deps deleted file mode 100644 index d873b8aa7..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdcoefct.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdcoefct.o: ../crypto777/jpeg/jdcoefct.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdcoefct.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdcolor.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdcolor.deps deleted file mode 100644 index e0df9d8ec..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdcolor.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdcolor.o: ../crypto777/jpeg/jdcolor.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdcolor.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jddctmgr.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jddctmgr.deps deleted file mode 100644 index 5f61e96c9..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jddctmgr.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jddctmgr.o: ../crypto777/jpeg/jddctmgr.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jddctmgr.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdhuff.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdhuff.deps deleted file mode 100644 index 02b83e72a..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdhuff.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdhuff.o: ../crypto777/jpeg/jdhuff.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdhuff.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdinput.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdinput.deps deleted file mode 100644 index 8c2690380..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdinput.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdinput.o: ../crypto777/jpeg/jdinput.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdinput.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmainct.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdmainct.deps deleted file mode 100644 index 0167cacff..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmainct.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdmainct.o: ../crypto777/jpeg/jdmainct.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdmainct.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmarker.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdmarker.deps deleted file mode 100644 index d8a3c1617..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmarker.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdmarker.o: ../crypto777/jpeg/jdmarker.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdmarker.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmaster.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdmaster.deps deleted file mode 100644 index 9a91d1b10..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmaster.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdmaster.o: ../crypto777/jpeg/jdmaster.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdmaster.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmerge.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdmerge.deps deleted file mode 100644 index 72bf1c060..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdmerge.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdmerge.o: ../crypto777/jpeg/jdmerge.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdmerge.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdpostct.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdpostct.deps deleted file mode 100644 index 25b9900d6..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdpostct.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdpostct.o: ../crypto777/jpeg/jdpostct.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdpostct.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdsample.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdsample.deps deleted file mode 100644 index fd68082c6..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdsample.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdsample.o: ../crypto777/jpeg/jdsample.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdsample.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jdtrans.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jdtrans.deps deleted file mode 100644 index 94f6d5552..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jdtrans.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jdtrans.o: ../crypto777/jpeg/jdtrans.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jdtrans.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jerror.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jerror.deps deleted file mode 100644 index 881b8c3f6..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jerror.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jerror.o: ../crypto777/jpeg/jerror.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jversion.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jerror.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jversion.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctflt.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctflt.deps deleted file mode 100644 index 7164c29bf..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctflt.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jfdctflt.o: ../crypto777/jpeg/jfdctflt.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jfdctflt.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctfst.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctfst.deps deleted file mode 100644 index c13e2e250..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctfst.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jfdctfst.o: ../crypto777/jpeg/jfdctfst.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jfdctfst.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctint.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctint.deps deleted file mode 100644 index 1107185e0..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jfdctint.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jfdctint.o: ../crypto777/jpeg/jfdctint.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jfdctint.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jidctflt.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jidctflt.deps deleted file mode 100644 index 37b0285e9..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jidctflt.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jidctflt.o: ../crypto777/jpeg/jidctflt.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jidctflt.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jidctfst.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jidctfst.deps deleted file mode 100644 index e1638615d..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jidctfst.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jidctfst.o: ../crypto777/jpeg/jidctfst.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jidctfst.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jidctint.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jidctint.deps deleted file mode 100644 index 84ca022c2..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jidctint.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jidctint.o: ../crypto777/jpeg/jidctint.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jdct.h -../crypto777/jpeg/jidctint.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jdct.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jmemmgr.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jmemmgr.deps deleted file mode 100644 index 13ec2802b..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jmemmgr.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jmemmgr.o: ../crypto777/jpeg/jmemmgr.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jmemsys.h -../crypto777/jpeg/jmemmgr.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jmemsys.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jmemnobs.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jmemnobs.deps deleted file mode 100644 index 6b6d5e58d..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jmemnobs.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jmemnobs.o: ../crypto777/jpeg/jmemnobs.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ - ../crypto777/jpeg/jmemsys.h -../crypto777/jpeg/jmemnobs.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: -../crypto777/jpeg/jmemsys.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jquant1.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jquant1.deps deleted file mode 100644 index f88a90ded..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jquant1.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jquant1.o: ../crypto777/jpeg/jquant1.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jquant1.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jquant2.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jquant2.deps deleted file mode 100644 index b9696faee..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jquant2.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jquant2.o: ../crypto777/jpeg/jquant2.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jquant2.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/jpeg/jutils.deps b/crypto777/pnacl/Release/__/crypto777/jpeg/jutils.deps deleted file mode 100644 index 2ebf45ad3..000000000 --- a/crypto777/pnacl/Release/__/crypto777/jpeg/jutils.deps +++ /dev/null @@ -1,12 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/jpeg/jutils.o: ../crypto777/jpeg/jutils.c \ - ../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ - ../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h -../crypto777/jpeg/jutils.c: -../crypto777/jpeg/jinclude.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jmorecfg.h: -../crypto777/jpeg/jpegint.h: -../crypto777/jpeg/jerror.h: diff --git a/crypto777/pnacl/Release/__/crypto777/libgfshare.deps b/crypto777/pnacl/Release/__/crypto777/libgfshare.deps deleted file mode 100644 index 0ab8ec314..000000000 --- a/crypto777/pnacl/Release/__/crypto777/libgfshare.deps +++ /dev/null @@ -1,32 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/libgfshare.o: ../crypto777/libgfshare.c \ - ../crypto777/OS_portable.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../includes/../crypto777/OS_portable.h -../crypto777/libgfshare.c: -../crypto777/OS_portable.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../includes/../crypto777/OS_portable.h: diff --git a/crypto777/pnacl/Release/__/crypto777/ramcoder.deps b/crypto777/pnacl/Release/__/crypto777/ramcoder.deps deleted file mode 100644 index 2288d1586..000000000 --- a/crypto777/pnacl/Release/__/crypto777/ramcoder.deps +++ /dev/null @@ -1,7 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/__/crypto777/ramcoder.o: ../crypto777/ramcoder.c \ - ../crypto777/../includes/curve25519.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h -../crypto777/ramcoder.c: -../crypto777/../includes/curve25519.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: diff --git a/crypto777/pnacl/Release/dir.stamp b/crypto777/pnacl/Release/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nacl_io.stamp b/crypto777/pnacl/Release/nacl_io.stamp deleted file mode 100644 index f79c8e565..000000000 --- a/crypto777/pnacl/Release/nacl_io.stamp +++ /dev/null @@ -1 +0,0 @@ -TOUCHED /Users/jl777/iguana/crypto777/pnacl/Release/nacl_io.stamp diff --git a/crypto777/pnacl/Release/nanosrc/aio/ctx.deps b/crypto777/pnacl/Release/nanosrc/aio/ctx.deps deleted file mode 100644 index 6e72c47b3..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/ctx.deps +++ /dev/null @@ -1,41 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/ctx.o: nanosrc/aio/ctx.c nanosrc/aio/ctx.h \ - nanosrc/aio/../utils/mutex.h nanosrc/aio/../utils/queue.h \ - nanosrc/aio/worker.h nanosrc/aio/fsm.h nanosrc/aio/timerset.h \ - nanosrc/aio/../utils/clock.h nanosrc/aio/../utils/int.h \ - nanosrc/aio/../utils/list.h nanosrc/aio/worker_posix.h \ - nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ - nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/../nn_config.h \ - nanosrc/aio/../utils/fd.h nanosrc/aio/../utils/efd_pipe.h \ - nanosrc/aio/poller.h nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/aio/pool.h nanosrc/aio/../utils/err.h \ - nanosrc/aio/../utils/../nn.h nanosrc/aio/../utils/fast.h \ - nanosrc/aio/../utils/cont.h -nanosrc/aio/ctx.c: -nanosrc/aio/ctx.h: -nanosrc/aio/../utils/mutex.h: -nanosrc/aio/../utils/queue.h: -nanosrc/aio/worker.h: -nanosrc/aio/fsm.h: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/worker_posix.h: -nanosrc/aio/../utils/thread.h: -nanosrc/aio/../utils/thread_posix.h: -nanosrc/aio/../utils/efd.h: -nanosrc/aio/../utils/../nn_config.h: -nanosrc/aio/../utils/fd.h: -nanosrc/aio/../utils/efd_pipe.h: -nanosrc/aio/poller.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/aio/pool.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/../nn.h: -nanosrc/aio/../utils/fast.h: -nanosrc/aio/../utils/cont.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/dir.stamp b/crypto777/pnacl/Release/nanosrc/aio/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/aio/fsm.deps b/crypto777/pnacl/Release/nanosrc/aio/fsm.deps deleted file mode 100644 index 9eeea5056..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/fsm.deps +++ /dev/null @@ -1,40 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/fsm.o: nanosrc/aio/fsm.c nanosrc/aio/fsm.h \ - nanosrc/aio/../utils/queue.h nanosrc/aio/ctx.h \ - nanosrc/aio/../utils/mutex.h nanosrc/aio/worker.h \ - nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ - nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ - nanosrc/aio/worker_posix.h nanosrc/aio/../utils/thread.h \ - nanosrc/aio/../utils/thread_posix.h nanosrc/aio/../utils/efd.h \ - nanosrc/aio/../utils/../nn_config.h nanosrc/aio/../utils/fd.h \ - nanosrc/aio/../utils/efd_pipe.h nanosrc/aio/poller.h \ - nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/aio/pool.h nanosrc/aio/../utils/err.h \ - nanosrc/aio/../utils/../nn.h nanosrc/aio/../utils/fast.h -nanosrc/aio/fsm.c: -nanosrc/aio/fsm.h: -nanosrc/aio/../utils/queue.h: -nanosrc/aio/ctx.h: -nanosrc/aio/../utils/mutex.h: -nanosrc/aio/worker.h: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/worker_posix.h: -nanosrc/aio/../utils/thread.h: -nanosrc/aio/../utils/thread_posix.h: -nanosrc/aio/../utils/efd.h: -nanosrc/aio/../utils/../nn_config.h: -nanosrc/aio/../utils/fd.h: -nanosrc/aio/../utils/efd_pipe.h: -nanosrc/aio/poller.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/aio/pool.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/../nn.h: -nanosrc/aio/../utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/poller.deps b/crypto777/pnacl/Release/nanosrc/aio/poller.deps deleted file mode 100644 index 32585e5c2..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/poller.deps +++ /dev/null @@ -1,20 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/poller.o: nanosrc/aio/poller.c \ - nanosrc/aio/poller.h nanosrc/aio/../nn_config.h \ - nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/aio/poller_poll.c nanosrc/aio/../utils/alloc.h \ - nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ - nanosrc/aio/../utils/fast.h -nanosrc/aio/poller.c: -nanosrc/aio/poller.h: -nanosrc/aio/../nn_config.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/aio/poller_poll.c: -nanosrc/aio/../utils/alloc.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/../nn.h: -nanosrc/aio/../utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/pool.deps b/crypto777/pnacl/Release/nanosrc/aio/pool.deps deleted file mode 100644 index 6322e8f44..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/pool.deps +++ /dev/null @@ -1,33 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/pool.o: nanosrc/aio/pool.c nanosrc/aio/pool.h \ - nanosrc/aio/worker.h nanosrc/aio/fsm.h nanosrc/aio/../utils/queue.h \ - nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ - nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ - nanosrc/aio/worker_posix.h nanosrc/aio/../utils/mutex.h \ - nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ - nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/../nn_config.h \ - nanosrc/aio/../utils/fd.h nanosrc/aio/../utils/efd_pipe.h \ - nanosrc/aio/poller.h nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h -nanosrc/aio/pool.c: -nanosrc/aio/pool.h: -nanosrc/aio/worker.h: -nanosrc/aio/fsm.h: -nanosrc/aio/../utils/queue.h: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/worker_posix.h: -nanosrc/aio/../utils/mutex.h: -nanosrc/aio/../utils/thread.h: -nanosrc/aio/../utils/thread_posix.h: -nanosrc/aio/../utils/efd.h: -nanosrc/aio/../utils/../nn_config.h: -nanosrc/aio/../utils/fd.h: -nanosrc/aio/../utils/efd_pipe.h: -nanosrc/aio/poller.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/timer.deps b/crypto777/pnacl/Release/nanosrc/aio/timer.deps deleted file mode 100644 index b33cec5ce..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/timer.deps +++ /dev/null @@ -1,42 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/timer.o: nanosrc/aio/timer.c \ - nanosrc/aio/timer.h nanosrc/aio/fsm.h nanosrc/aio/../utils/queue.h \ - nanosrc/aio/worker.h nanosrc/aio/timerset.h \ - nanosrc/aio/../utils/clock.h nanosrc/aio/../utils/int.h \ - nanosrc/aio/../utils/list.h nanosrc/aio/worker_posix.h \ - nanosrc/aio/../utils/mutex.h nanosrc/aio/../utils/thread.h \ - nanosrc/aio/../utils/thread_posix.h nanosrc/aio/../utils/efd.h \ - nanosrc/aio/../utils/../nn_config.h nanosrc/aio/../utils/fd.h \ - nanosrc/aio/../utils/efd_pipe.h nanosrc/aio/poller.h \ - nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/aio/../utils/cont.h nanosrc/aio/../utils/fast.h \ - nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ - nanosrc/aio/../utils/attr.h -nanosrc/aio/timer.c: -nanosrc/aio/timer.h: -nanosrc/aio/fsm.h: -nanosrc/aio/../utils/queue.h: -nanosrc/aio/worker.h: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/worker_posix.h: -nanosrc/aio/../utils/mutex.h: -nanosrc/aio/../utils/thread.h: -nanosrc/aio/../utils/thread_posix.h: -nanosrc/aio/../utils/efd.h: -nanosrc/aio/../utils/../nn_config.h: -nanosrc/aio/../utils/fd.h: -nanosrc/aio/../utils/efd_pipe.h: -nanosrc/aio/poller.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/aio/../utils/cont.h: -nanosrc/aio/../utils/fast.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/../nn.h: -nanosrc/aio/../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/timerset.deps b/crypto777/pnacl/Release/nanosrc/aio/timerset.deps deleted file mode 100644 index 2f22935c0..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/timerset.deps +++ /dev/null @@ -1,17 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/timerset.o: nanosrc/aio/timerset.c \ - nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ - nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ - nanosrc/aio/../utils/fast.h nanosrc/aio/../utils/cont.h \ - nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ - nanosrc/aio/../utils/../nn_config.h -nanosrc/aio/timerset.c: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/../utils/fast.h: -nanosrc/aio/../utils/cont.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/../nn.h: -nanosrc/aio/../utils/../nn_config.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/usock.deps b/crypto777/pnacl/Release/nanosrc/aio/usock.deps deleted file mode 100644 index 931a737ae..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/usock.deps +++ /dev/null @@ -1,48 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/usock.o: nanosrc/aio/usock.c \ - nanosrc/aio/usock.h nanosrc/aio/../nn.h nanosrc/aio/../nn_config.h \ - nanosrc/aio/usock_posix.h nanosrc/aio/fsm.h \ - nanosrc/aio/../utils/queue.h nanosrc/aio/worker.h \ - nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ - nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ - nanosrc/aio/worker_posix.h nanosrc/aio/../utils/mutex.h \ - nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ - nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/fd.h \ - nanosrc/aio/../utils/efd_pipe.h nanosrc/aio/poller.h \ - nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/aio/usock_posix.c nanosrc/aio/../utils/alloc.h \ - nanosrc/aio/../utils/closefd.h nanosrc/aio/../utils/cont.h \ - nanosrc/aio/../utils/fast.h nanosrc/aio/../utils/err.h \ - nanosrc/aio/../utils/attr.h -nanosrc/aio/usock.c: -nanosrc/aio/usock.h: -nanosrc/aio/../nn.h: -nanosrc/aio/../nn_config.h: -nanosrc/aio/usock_posix.h: -nanosrc/aio/fsm.h: -nanosrc/aio/../utils/queue.h: -nanosrc/aio/worker.h: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/worker_posix.h: -nanosrc/aio/../utils/mutex.h: -nanosrc/aio/../utils/thread.h: -nanosrc/aio/../utils/thread_posix.h: -nanosrc/aio/../utils/efd.h: -nanosrc/aio/../utils/fd.h: -nanosrc/aio/../utils/efd_pipe.h: -nanosrc/aio/poller.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/aio/usock_posix.c: -nanosrc/aio/../utils/alloc.h: -nanosrc/aio/../utils/closefd.h: -nanosrc/aio/../utils/cont.h: -nanosrc/aio/../utils/fast.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/aio/worker.deps b/crypto777/pnacl/Release/nanosrc/aio/worker.deps deleted file mode 100644 index 386a2a612..000000000 --- a/crypto777/pnacl/Release/nanosrc/aio/worker.deps +++ /dev/null @@ -1,44 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/aio/worker.o: nanosrc/aio/worker.c \ - nanosrc/aio/worker.h nanosrc/aio/fsm.h nanosrc/aio/../utils/queue.h \ - nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ - nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ - nanosrc/aio/worker_posix.h nanosrc/aio/../utils/mutex.h \ - nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ - nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/../nn_config.h \ - nanosrc/aio/../utils/fd.h nanosrc/aio/../utils/efd_pipe.h \ - nanosrc/aio/poller.h nanosrc/aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/aio/worker_posix.c nanosrc/aio/ctx.h nanosrc/aio/pool.h \ - nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ - nanosrc/aio/../utils/fast.h nanosrc/aio/../utils/cont.h \ - nanosrc/aio/../utils/attr.h -nanosrc/aio/worker.c: -nanosrc/aio/worker.h: -nanosrc/aio/fsm.h: -nanosrc/aio/../utils/queue.h: -nanosrc/aio/timerset.h: -nanosrc/aio/../utils/clock.h: -nanosrc/aio/../utils/int.h: -nanosrc/aio/../utils/list.h: -nanosrc/aio/worker_posix.h: -nanosrc/aio/../utils/mutex.h: -nanosrc/aio/../utils/thread.h: -nanosrc/aio/../utils/thread_posix.h: -nanosrc/aio/../utils/efd.h: -nanosrc/aio/../utils/../nn_config.h: -nanosrc/aio/../utils/fd.h: -nanosrc/aio/../utils/efd_pipe.h: -nanosrc/aio/poller.h: -nanosrc/aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/aio/worker_posix.c: -nanosrc/aio/ctx.h: -nanosrc/aio/pool.h: -nanosrc/aio/../utils/err.h: -nanosrc/aio/../utils/../nn.h: -nanosrc/aio/../utils/fast.h: -nanosrc/aio/../utils/cont.h: -nanosrc/aio/../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/dir.stamp b/crypto777/pnacl/Release/nanosrc/core/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/core/ep.deps b/crypto777/pnacl/Release/nanosrc/core/ep.deps deleted file mode 100644 index bcbaaef47..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/ep.deps +++ /dev/null @@ -1,58 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/ep.o: nanosrc/core/ep.c \ - nanosrc/core/../transport.h nanosrc/core/../nn.h \ - nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ - nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ - nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ - nanosrc/core/../aio/../utils/chunk.h \ - nanosrc/core/../aio/../utils/int.h nanosrc/core/ep.h \ - nanosrc/core/sock.h nanosrc/core/../protocol.h \ - nanosrc/core/../aio/ctx.h nanosrc/core/../aio/../utils/mutex.h \ - nanosrc/core/../aio/worker.h nanosrc/core/../aio/timerset.h \ - nanosrc/core/../aio/../utils/clock.h \ - nanosrc/core/../aio/worker_posix.h \ - nanosrc/core/../aio/../utils/thread.h \ - nanosrc/core/../aio/../utils/thread_posix.h \ - nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ - nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ - nanosrc/core/../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ - nanosrc/core/../utils/err.h nanosrc/core/../aio/../utils/fast.h \ - nanosrc/core/../utils/cont.h nanosrc/core/../utils/attr.h -nanosrc/core/ep.c: -nanosrc/core/../transport.h: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../aio/fsm.h: -nanosrc/core/../aio/../utils/queue.h: -nanosrc/core/../utils/list.h: -nanosrc/core/../utils/msg.h: -nanosrc/core/../aio/../utils/chunkref.h: -nanosrc/core/../aio/../utils/chunk.h: -nanosrc/core/../aio/../utils/int.h: -nanosrc/core/ep.h: -nanosrc/core/sock.h: -nanosrc/core/../protocol.h: -nanosrc/core/../aio/ctx.h: -nanosrc/core/../aio/../utils/mutex.h: -nanosrc/core/../aio/worker.h: -nanosrc/core/../aio/timerset.h: -nanosrc/core/../aio/../utils/clock.h: -nanosrc/core/../aio/worker_posix.h: -nanosrc/core/../aio/../utils/thread.h: -nanosrc/core/../aio/../utils/thread_posix.h: -nanosrc/core/../aio/../utils/efd.h: -nanosrc/core/../aio/../utils/fd.h: -nanosrc/core/../aio/../utils/efd_pipe.h: -nanosrc/core/../aio/poller.h: -nanosrc/core/../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/core/../aio/pool.h: -nanosrc/core/../utils/sem.h: -nanosrc/core/../utils/err.h: -nanosrc/core/../aio/../utils/fast.h: -nanosrc/core/../utils/cont.h: -nanosrc/core/../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/epbase.deps b/crypto777/pnacl/Release/nanosrc/core/epbase.deps deleted file mode 100644 index 69fd21fcc..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/epbase.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/epbase.o: nanosrc/core/epbase.c \ - nanosrc/core/../transport.h nanosrc/core/../nn.h \ - nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ - nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ - nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ - nanosrc/core/../aio/../utils/chunk.h \ - nanosrc/core/../aio/../utils/int.h nanosrc/core/ep.h \ - nanosrc/core/sock.h nanosrc/core/../protocol.h \ - nanosrc/core/../aio/ctx.h nanosrc/core/../aio/../utils/mutex.h \ - nanosrc/core/../aio/worker.h nanosrc/core/../aio/timerset.h \ - nanosrc/core/../aio/../utils/clock.h \ - nanosrc/core/../aio/worker_posix.h \ - nanosrc/core/../aio/../utils/thread.h \ - nanosrc/core/../aio/../utils/thread_posix.h \ - nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ - nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ - nanosrc/core/../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ - nanosrc/core/../utils/attr.h -nanosrc/core/epbase.c: -nanosrc/core/../transport.h: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../aio/fsm.h: -nanosrc/core/../aio/../utils/queue.h: -nanosrc/core/../utils/list.h: -nanosrc/core/../utils/msg.h: -nanosrc/core/../aio/../utils/chunkref.h: -nanosrc/core/../aio/../utils/chunk.h: -nanosrc/core/../aio/../utils/int.h: -nanosrc/core/ep.h: -nanosrc/core/sock.h: -nanosrc/core/../protocol.h: -nanosrc/core/../aio/ctx.h: -nanosrc/core/../aio/../utils/mutex.h: -nanosrc/core/../aio/worker.h: -nanosrc/core/../aio/timerset.h: -nanosrc/core/../aio/../utils/clock.h: -nanosrc/core/../aio/worker_posix.h: -nanosrc/core/../aio/../utils/thread.h: -nanosrc/core/../aio/../utils/thread_posix.h: -nanosrc/core/../aio/../utils/efd.h: -nanosrc/core/../aio/../utils/fd.h: -nanosrc/core/../aio/../utils/efd_pipe.h: -nanosrc/core/../aio/poller.h: -nanosrc/core/../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/core/../aio/pool.h: -nanosrc/core/../utils/sem.h: -nanosrc/core/../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/global.deps b/crypto777/pnacl/Release/nanosrc/core/global.deps deleted file mode 100644 index e4472a1a8..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/global.deps +++ /dev/null @@ -1,132 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/global.o: nanosrc/core/global.c \ - nanosrc/core/../nn.h nanosrc/core/../nn_config.h \ - nanosrc/core/../transport.h nanosrc/core/../aio/fsm.h \ - nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ - nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ - nanosrc/core/../aio/../utils/chunk.h \ - nanosrc/core/../aio/../utils/int.h nanosrc/core/../protocol.h \ - nanosrc/core/global.h nanosrc/core/sock.h nanosrc/core/../aio/ctx.h \ - nanosrc/core/../aio/../utils/mutex.h nanosrc/core/../aio/worker.h \ - nanosrc/core/../aio/timerset.h nanosrc/core/../aio/../utils/clock.h \ - nanosrc/core/../aio/worker_posix.h \ - nanosrc/core/../aio/../utils/thread.h \ - nanosrc/core/../aio/../utils/thread_posix.h \ - nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ - nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ - nanosrc/core/../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ - nanosrc/core/ep.h nanosrc/core/../aio/timer.h \ - nanosrc/core/../utils/err.h nanosrc/core/../aio/../utils/fast.h \ - nanosrc/core/../utils/alloc.h nanosrc/core/../utils/cont.h \ - nanosrc/core/../utils/random.h nanosrc/core/../utils/glock.h \ - nanosrc/core/../utils/attr.h \ - nanosrc/core/../transports/inproc/inproc.h \ - nanosrc/core/../transports/ipc/ipc.h \ - nanosrc/core/../transports/tcp/tcp.h \ - nanosrc/core/../transports/ws/ws.h \ - nanosrc/core/../transports/tcpmux/tcpmux.h \ - nanosrc/core/../protocols/pair/pair.h \ - nanosrc/core/../protocols/pair/xpair.h \ - nanosrc/core/../protocols/pubsub/pub.h \ - nanosrc/core/../protocols/pubsub/sub.h \ - nanosrc/core/../protocols/pubsub/xpub.h \ - nanosrc/core/../protocols/pubsub/xsub.h \ - nanosrc/core/../protocols/reqrep/rep.h \ - nanosrc/core/../protocols/reqrep/xrep.h \ - nanosrc/core/../protocols/reqrep/../../utils/hash.h \ - nanosrc/core/../protocols/reqrep/../utils/fq.h \ - nanosrc/core/../protocols/reqrep/../utils/priolist.h \ - nanosrc/core/../protocols/reqrep/req.h \ - nanosrc/core/../protocols/reqrep/xreq.h \ - nanosrc/core/../protocols/reqrep/../utils/lb.h \ - nanosrc/core/../protocols/reqrep/task.h \ - nanosrc/core/../protocols/reqrep/../../reqrep.h \ - nanosrc/core/../protocols/pipeline/push.h \ - nanosrc/core/../protocols/pipeline/pull.h \ - nanosrc/core/../protocols/pipeline/xpush.h \ - nanosrc/core/../protocols/pipeline/xpull.h \ - nanosrc/core/../protocols/survey/respondent.h \ - nanosrc/core/../protocols/survey/surveyor.h \ - nanosrc/core/../protocols/survey/xrespondent.h \ - nanosrc/core/../protocols/survey/xsurveyor.h \ - nanosrc/core/../protocols/survey/../utils/dist.h \ - nanosrc/core/../protocols/bus/bus.h \ - nanosrc/core/../protocols/bus/xbus.h nanosrc/core/../pubsub.h \ - nanosrc/core/../pipeline.h -nanosrc/core/global.c: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../transport.h: -nanosrc/core/../aio/fsm.h: -nanosrc/core/../aio/../utils/queue.h: -nanosrc/core/../utils/list.h: -nanosrc/core/../utils/msg.h: -nanosrc/core/../aio/../utils/chunkref.h: -nanosrc/core/../aio/../utils/chunk.h: -nanosrc/core/../aio/../utils/int.h: -nanosrc/core/../protocol.h: -nanosrc/core/global.h: -nanosrc/core/sock.h: -nanosrc/core/../aio/ctx.h: -nanosrc/core/../aio/../utils/mutex.h: -nanosrc/core/../aio/worker.h: -nanosrc/core/../aio/timerset.h: -nanosrc/core/../aio/../utils/clock.h: -nanosrc/core/../aio/worker_posix.h: -nanosrc/core/../aio/../utils/thread.h: -nanosrc/core/../aio/../utils/thread_posix.h: -nanosrc/core/../aio/../utils/efd.h: -nanosrc/core/../aio/../utils/fd.h: -nanosrc/core/../aio/../utils/efd_pipe.h: -nanosrc/core/../aio/poller.h: -nanosrc/core/../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/core/../aio/pool.h: -nanosrc/core/../utils/sem.h: -nanosrc/core/ep.h: -nanosrc/core/../aio/timer.h: -nanosrc/core/../utils/err.h: -nanosrc/core/../aio/../utils/fast.h: -nanosrc/core/../utils/alloc.h: -nanosrc/core/../utils/cont.h: -nanosrc/core/../utils/random.h: -nanosrc/core/../utils/glock.h: -nanosrc/core/../utils/attr.h: -nanosrc/core/../transports/inproc/inproc.h: -nanosrc/core/../transports/ipc/ipc.h: -nanosrc/core/../transports/tcp/tcp.h: -nanosrc/core/../transports/ws/ws.h: -nanosrc/core/../transports/tcpmux/tcpmux.h: -nanosrc/core/../protocols/pair/pair.h: -nanosrc/core/../protocols/pair/xpair.h: -nanosrc/core/../protocols/pubsub/pub.h: -nanosrc/core/../protocols/pubsub/sub.h: -nanosrc/core/../protocols/pubsub/xpub.h: -nanosrc/core/../protocols/pubsub/xsub.h: -nanosrc/core/../protocols/reqrep/rep.h: -nanosrc/core/../protocols/reqrep/xrep.h: -nanosrc/core/../protocols/reqrep/../../utils/hash.h: -nanosrc/core/../protocols/reqrep/../utils/fq.h: -nanosrc/core/../protocols/reqrep/../utils/priolist.h: -nanosrc/core/../protocols/reqrep/req.h: -nanosrc/core/../protocols/reqrep/xreq.h: -nanosrc/core/../protocols/reqrep/../utils/lb.h: -nanosrc/core/../protocols/reqrep/task.h: -nanosrc/core/../protocols/reqrep/../../reqrep.h: -nanosrc/core/../protocols/pipeline/push.h: -nanosrc/core/../protocols/pipeline/pull.h: -nanosrc/core/../protocols/pipeline/xpush.h: -nanosrc/core/../protocols/pipeline/xpull.h: -nanosrc/core/../protocols/survey/respondent.h: -nanosrc/core/../protocols/survey/surveyor.h: -nanosrc/core/../protocols/survey/xrespondent.h: -nanosrc/core/../protocols/survey/xsurveyor.h: -nanosrc/core/../protocols/survey/../utils/dist.h: -nanosrc/core/../protocols/bus/bus.h: -nanosrc/core/../protocols/bus/xbus.h: -nanosrc/core/../pubsub.h: -nanosrc/core/../pipeline.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/pipe.deps b/crypto777/pnacl/Release/nanosrc/core/pipe.deps deleted file mode 100644 index 9e863bc0d..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/pipe.deps +++ /dev/null @@ -1,55 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/pipe.o: nanosrc/core/pipe.c \ - nanosrc/core/../transport.h nanosrc/core/../nn.h \ - nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ - nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ - nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ - nanosrc/core/../aio/../utils/chunk.h \ - nanosrc/core/../aio/../utils/int.h nanosrc/core/../protocol.h \ - nanosrc/core/sock.h nanosrc/core/../aio/ctx.h \ - nanosrc/core/../aio/../utils/mutex.h nanosrc/core/../aio/worker.h \ - nanosrc/core/../aio/timerset.h nanosrc/core/../aio/../utils/clock.h \ - nanosrc/core/../aio/worker_posix.h \ - nanosrc/core/../aio/../utils/thread.h \ - nanosrc/core/../aio/../utils/thread_posix.h \ - nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ - nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ - nanosrc/core/../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ - nanosrc/core/ep.h nanosrc/core/../utils/err.h \ - nanosrc/core/../aio/../utils/fast.h -nanosrc/core/pipe.c: -nanosrc/core/../transport.h: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../aio/fsm.h: -nanosrc/core/../aio/../utils/queue.h: -nanosrc/core/../utils/list.h: -nanosrc/core/../utils/msg.h: -nanosrc/core/../aio/../utils/chunkref.h: -nanosrc/core/../aio/../utils/chunk.h: -nanosrc/core/../aio/../utils/int.h: -nanosrc/core/../protocol.h: -nanosrc/core/sock.h: -nanosrc/core/../aio/ctx.h: -nanosrc/core/../aio/../utils/mutex.h: -nanosrc/core/../aio/worker.h: -nanosrc/core/../aio/timerset.h: -nanosrc/core/../aio/../utils/clock.h: -nanosrc/core/../aio/worker_posix.h: -nanosrc/core/../aio/../utils/thread.h: -nanosrc/core/../aio/../utils/thread_posix.h: -nanosrc/core/../aio/../utils/efd.h: -nanosrc/core/../aio/../utils/fd.h: -nanosrc/core/../aio/../utils/efd_pipe.h: -nanosrc/core/../aio/poller.h: -nanosrc/core/../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/core/../aio/pool.h: -nanosrc/core/../utils/sem.h: -nanosrc/core/ep.h: -nanosrc/core/../utils/err.h: -nanosrc/core/../aio/../utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/poll.deps b/crypto777/pnacl/Release/nanosrc/core/poll.deps deleted file mode 100644 index f15a00a59..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/poll.deps +++ /dev/null @@ -1,15 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/poll.o: nanosrc/core/poll.c \ - nanosrc/core/../nn.h nanosrc/core/../nn_config.h \ - nanosrc/core/../utils/alloc.h nanosrc/core/../utils/fast.h \ - nanosrc/core/../utils/err.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h -nanosrc/core/poll.c: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../utils/alloc.h: -nanosrc/core/../utils/fast.h: -nanosrc/core/../utils/err.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/sock.deps b/crypto777/pnacl/Release/nanosrc/core/sock.deps deleted file mode 100644 index 2dbbdcd6e..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/sock.deps +++ /dev/null @@ -1,59 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/sock.o: nanosrc/core/sock.c \ - nanosrc/core/../protocol.h nanosrc/core/../utils/msg.h \ - nanosrc/core/../utils/chunkref.h nanosrc/core/../utils/chunk.h \ - nanosrc/core/../utils/int.h nanosrc/core/../utils/list.h \ - nanosrc/core/../transport.h nanosrc/core/../nn.h \ - nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ - nanosrc/core/../aio/../utils/queue.h nanosrc/core/sock.h \ - nanosrc/core/../aio/ctx.h nanosrc/core/../aio/../utils/mutex.h \ - nanosrc/core/../aio/worker.h nanosrc/core/../aio/timerset.h \ - nanosrc/core/../aio/../utils/clock.h \ - nanosrc/core/../aio/worker_posix.h \ - nanosrc/core/../aio/../utils/thread.h \ - nanosrc/core/../utils/thread_posix.h \ - nanosrc/core/../aio/../utils/efd.h nanosrc/core/../utils/fd.h \ - nanosrc/core/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ - nanosrc/core/../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ - nanosrc/core/global.h nanosrc/core/ep.h nanosrc/core/../utils/err.h \ - nanosrc/core/../utils/fast.h nanosrc/core/../utils/cont.h \ - nanosrc/core/../utils/alloc.h -nanosrc/core/sock.c: -nanosrc/core/../protocol.h: -nanosrc/core/../utils/msg.h: -nanosrc/core/../utils/chunkref.h: -nanosrc/core/../utils/chunk.h: -nanosrc/core/../utils/int.h: -nanosrc/core/../utils/list.h: -nanosrc/core/../transport.h: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../aio/fsm.h: -nanosrc/core/../aio/../utils/queue.h: -nanosrc/core/sock.h: -nanosrc/core/../aio/ctx.h: -nanosrc/core/../aio/../utils/mutex.h: -nanosrc/core/../aio/worker.h: -nanosrc/core/../aio/timerset.h: -nanosrc/core/../aio/../utils/clock.h: -nanosrc/core/../aio/worker_posix.h: -nanosrc/core/../aio/../utils/thread.h: -nanosrc/core/../utils/thread_posix.h: -nanosrc/core/../aio/../utils/efd.h: -nanosrc/core/../utils/fd.h: -nanosrc/core/../utils/efd_pipe.h: -nanosrc/core/../aio/poller.h: -nanosrc/core/../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/core/../aio/pool.h: -nanosrc/core/../utils/sem.h: -nanosrc/core/global.h: -nanosrc/core/ep.h: -nanosrc/core/../utils/err.h: -nanosrc/core/../utils/fast.h: -nanosrc/core/../utils/cont.h: -nanosrc/core/../utils/alloc.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/sockbase.deps b/crypto777/pnacl/Release/nanosrc/core/sockbase.deps deleted file mode 100644 index 6d2050948..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/sockbase.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/sockbase.o: nanosrc/core/sockbase.c \ - nanosrc/core/../protocol.h nanosrc/core/../utils/msg.h \ - nanosrc/core/../utils/chunkref.h nanosrc/core/../utils/chunk.h \ - nanosrc/core/../utils/int.h nanosrc/core/../utils/list.h \ - nanosrc/core/sock.h nanosrc/core/../transport.h nanosrc/core/../nn.h \ - nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ - nanosrc/core/../aio/../utils/queue.h nanosrc/core/../aio/ctx.h \ - nanosrc/core/../aio/../utils/mutex.h nanosrc/core/../aio/worker.h \ - nanosrc/core/../aio/timerset.h nanosrc/core/../aio/../utils/clock.h \ - nanosrc/core/../aio/worker_posix.h \ - nanosrc/core/../aio/../utils/thread.h \ - nanosrc/core/../utils/thread_posix.h \ - nanosrc/core/../aio/../utils/efd.h nanosrc/core/../utils/fd.h \ - nanosrc/core/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ - nanosrc/core/../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ - nanosrc/core/../utils/err.h nanosrc/core/../utils/fast.h \ - nanosrc/core/../utils/attr.h -nanosrc/core/sockbase.c: -nanosrc/core/../protocol.h: -nanosrc/core/../utils/msg.h: -nanosrc/core/../utils/chunkref.h: -nanosrc/core/../utils/chunk.h: -nanosrc/core/../utils/int.h: -nanosrc/core/../utils/list.h: -nanosrc/core/sock.h: -nanosrc/core/../transport.h: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../aio/fsm.h: -nanosrc/core/../aio/../utils/queue.h: -nanosrc/core/../aio/ctx.h: -nanosrc/core/../aio/../utils/mutex.h: -nanosrc/core/../aio/worker.h: -nanosrc/core/../aio/timerset.h: -nanosrc/core/../aio/../utils/clock.h: -nanosrc/core/../aio/worker_posix.h: -nanosrc/core/../aio/../utils/thread.h: -nanosrc/core/../utils/thread_posix.h: -nanosrc/core/../aio/../utils/efd.h: -nanosrc/core/../utils/fd.h: -nanosrc/core/../utils/efd_pipe.h: -nanosrc/core/../aio/poller.h: -nanosrc/core/../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/core/../aio/pool.h: -nanosrc/core/../utils/sem.h: -nanosrc/core/../utils/err.h: -nanosrc/core/../utils/fast.h: -nanosrc/core/../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/core/symbol.deps b/crypto777/pnacl/Release/nanosrc/core/symbol.deps deleted file mode 100644 index 1f9c7af25..000000000 --- a/crypto777/pnacl/Release/nanosrc/core/symbol.deps +++ /dev/null @@ -1,19 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/core/symbol.o: nanosrc/core/symbol.c \ - nanosrc/core/../nn.h nanosrc/core/../nn_config.h \ - nanosrc/core/../inproc.h nanosrc/core/../ipc.h nanosrc/core/../tcp.h \ - nanosrc/core/../pair.h nanosrc/core/../pubsub.h \ - nanosrc/core/../reqrep.h nanosrc/core/../pipeline.h \ - nanosrc/core/../survey.h nanosrc/core/../bus.h -nanosrc/core/symbol.c: -nanosrc/core/../nn.h: -nanosrc/core/../nn_config.h: -nanosrc/core/../inproc.h: -nanosrc/core/../ipc.h: -nanosrc/core/../tcp.h: -nanosrc/core/../pair.h: -nanosrc/core/../pubsub.h: -nanosrc/core/../reqrep.h: -nanosrc/core/../pipeline.h: -nanosrc/core/../survey.h: -nanosrc/core/../bus.h: diff --git a/crypto777/pnacl/Release/nanosrc/devices/device.deps b/crypto777/pnacl/Release/nanosrc/devices/device.deps deleted file mode 100644 index 8a8622857..000000000 --- a/crypto777/pnacl/Release/nanosrc/devices/device.deps +++ /dev/null @@ -1,18 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/devices/device.o: nanosrc/devices/device.c \ - nanosrc/devices/../nn.h nanosrc/devices/../nn_config.h \ - nanosrc/devices/../utils/err.h nanosrc/devices/../utils/fast.h \ - nanosrc/devices/../utils/fd.h nanosrc/devices/../utils/attr.h \ - nanosrc/devices/device.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h -nanosrc/devices/device.c: -nanosrc/devices/../nn.h: -nanosrc/devices/../nn_config.h: -nanosrc/devices/../utils/err.h: -nanosrc/devices/../utils/fast.h: -nanosrc/devices/../utils/fd.h: -nanosrc/devices/../utils/attr.h: -nanosrc/devices/device.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: diff --git a/crypto777/pnacl/Release/nanosrc/devices/dir.stamp b/crypto777/pnacl/Release/nanosrc/devices/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/devices/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/devices/tcpmuxd.deps b/crypto777/pnacl/Release/nanosrc/devices/tcpmuxd.deps deleted file mode 100644 index 752494e8b..000000000 --- a/crypto777/pnacl/Release/nanosrc/devices/tcpmuxd.deps +++ /dev/null @@ -1,33 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/devices/tcpmuxd.o: nanosrc/devices/tcpmuxd.c \ - nanosrc/devices/../nn.h nanosrc/devices/../nn_config.h \ - nanosrc/devices/../utils/thread.h \ - nanosrc/devices/../utils/thread_posix.h \ - nanosrc/devices/../utils/attr.h nanosrc/devices/../utils/err.h \ - nanosrc/devices/../utils/fast.h nanosrc/devices/../utils/int.h \ - nanosrc/devices/../utils/cont.h nanosrc/devices/../utils/wire.h \ - nanosrc/devices/../utils/alloc.h nanosrc/devices/../utils/list.h \ - nanosrc/devices/../utils/mutex.h nanosrc/devices/../utils/closefd.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/tcp.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h -nanosrc/devices/tcpmuxd.c: -nanosrc/devices/../nn.h: -nanosrc/devices/../nn_config.h: -nanosrc/devices/../utils/thread.h: -nanosrc/devices/../utils/thread_posix.h: -nanosrc/devices/../utils/attr.h: -nanosrc/devices/../utils/err.h: -nanosrc/devices/../utils/fast.h: -nanosrc/devices/../utils/int.h: -nanosrc/devices/../utils/cont.h: -nanosrc/devices/../utils/wire.h: -nanosrc/devices/../utils/alloc.h: -nanosrc/devices/../utils/list.h: -nanosrc/devices/../utils/mutex.h: -nanosrc/devices/../utils/closefd.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/tcp.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/bus/bus.deps b/crypto777/pnacl/Release/nanosrc/protocols/bus/bus.deps deleted file mode 100644 index b1943e26a..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/bus/bus.deps +++ /dev/null @@ -1,37 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/bus/bus.o: nanosrc/protocols/bus/bus.c \ - nanosrc/protocols/bus/bus.h nanosrc/protocols/bus/../../protocol.h \ - nanosrc/protocols/bus/../../utils/msg.h \ - nanosrc/protocols/bus/../../utils/chunkref.h \ - nanosrc/protocols/bus/../../utils/chunk.h \ - nanosrc/protocols/bus/../../utils/int.h \ - nanosrc/protocols/bus/../../utils/list.h nanosrc/protocols/bus/xbus.h \ - nanosrc/protocols/bus/../utils/dist.h \ - nanosrc/protocols/bus/../utils/fq.h \ - nanosrc/protocols/bus/../utils/priolist.h \ - nanosrc/protocols/bus/../../nn.h \ - nanosrc/protocols/bus/../../nn_config.h \ - nanosrc/protocols/bus/../../bus.h \ - nanosrc/protocols/bus/../../utils/cont.h \ - nanosrc/protocols/bus/../../utils/alloc.h \ - nanosrc/protocols/bus/../../utils/err.h \ - nanosrc/protocols/bus/../../utils/fast.h -nanosrc/protocols/bus/bus.c: -nanosrc/protocols/bus/bus.h: -nanosrc/protocols/bus/../../protocol.h: -nanosrc/protocols/bus/../../utils/msg.h: -nanosrc/protocols/bus/../../utils/chunkref.h: -nanosrc/protocols/bus/../../utils/chunk.h: -nanosrc/protocols/bus/../../utils/int.h: -nanosrc/protocols/bus/../../utils/list.h: -nanosrc/protocols/bus/xbus.h: -nanosrc/protocols/bus/../utils/dist.h: -nanosrc/protocols/bus/../utils/fq.h: -nanosrc/protocols/bus/../utils/priolist.h: -nanosrc/protocols/bus/../../nn.h: -nanosrc/protocols/bus/../../nn_config.h: -nanosrc/protocols/bus/../../bus.h: -nanosrc/protocols/bus/../../utils/cont.h: -nanosrc/protocols/bus/../../utils/alloc.h: -nanosrc/protocols/bus/../../utils/err.h: -nanosrc/protocols/bus/../../utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/bus/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/bus/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/bus/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/bus/xbus.deps b/crypto777/pnacl/Release/nanosrc/protocols/bus/xbus.deps deleted file mode 100644 index 2755411c7..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/bus/xbus.deps +++ /dev/null @@ -1,38 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/bus/xbus.o: nanosrc/protocols/bus/xbus.c \ - nanosrc/protocols/bus/xbus.h nanosrc/protocols/bus/../../protocol.h \ - nanosrc/protocols/bus/../../utils/msg.h \ - nanosrc/protocols/bus/../../utils/chunkref.h \ - nanosrc/protocols/bus/../../utils/chunk.h \ - nanosrc/protocols/bus/../../utils/int.h \ - nanosrc/protocols/bus/../../utils/list.h \ - nanosrc/protocols/bus/../utils/dist.h \ - nanosrc/protocols/bus/../utils/fq.h \ - nanosrc/protocols/bus/../utils/priolist.h \ - nanosrc/protocols/bus/../../nn.h \ - nanosrc/protocols/bus/../../nn_config.h \ - nanosrc/protocols/bus/../../bus.h \ - nanosrc/protocols/bus/../../utils/err.h \ - nanosrc/protocols/bus/../../utils/fast.h \ - nanosrc/protocols/bus/../../utils/cont.h \ - nanosrc/protocols/bus/../../utils/alloc.h \ - nanosrc/protocols/bus/../../utils/attr.h -nanosrc/protocols/bus/xbus.c: -nanosrc/protocols/bus/xbus.h: -nanosrc/protocols/bus/../../protocol.h: -nanosrc/protocols/bus/../../utils/msg.h: -nanosrc/protocols/bus/../../utils/chunkref.h: -nanosrc/protocols/bus/../../utils/chunk.h: -nanosrc/protocols/bus/../../utils/int.h: -nanosrc/protocols/bus/../../utils/list.h: -nanosrc/protocols/bus/../utils/dist.h: -nanosrc/protocols/bus/../utils/fq.h: -nanosrc/protocols/bus/../utils/priolist.h: -nanosrc/protocols/bus/../../nn.h: -nanosrc/protocols/bus/../../nn_config.h: -nanosrc/protocols/bus/../../bus.h: -nanosrc/protocols/bus/../../utils/err.h: -nanosrc/protocols/bus/../../utils/fast.h: -nanosrc/protocols/bus/../../utils/cont.h: -nanosrc/protocols/bus/../../utils/alloc.h: -nanosrc/protocols/bus/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pair/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/pair/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pair/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pair/pair.deps b/crypto777/pnacl/Release/nanosrc/protocols/pair/pair.deps deleted file mode 100644 index b4d057b95..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pair/pair.deps +++ /dev/null @@ -1,25 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pair/pair.o: \ - nanosrc/protocols/pair/pair.c nanosrc/protocols/pair/pair.h \ - nanosrc/protocols/pair/../../protocol.h \ - nanosrc/protocols/pair/../../utils/msg.h \ - nanosrc/protocols/pair/../../utils/chunkref.h \ - nanosrc/protocols/pair/../../utils/chunk.h \ - nanosrc/protocols/pair/../../utils/int.h \ - nanosrc/protocols/pair/../../utils/list.h \ - nanosrc/protocols/pair/xpair.h nanosrc/protocols/pair/../../nn.h \ - nanosrc/protocols/pair/../../nn_config.h \ - nanosrc/protocols/pair/../../pair.h -: -nanosrc/protocols/pair/pair.c: -nanosrc/protocols/pair/pair.h: -nanosrc/protocols/pair/../../protocol.h: -nanosrc/protocols/pair/../../utils/msg.h: -nanosrc/protocols/pair/../../utils/chunkref.h: -nanosrc/protocols/pair/../../utils/chunk.h: -nanosrc/protocols/pair/../../utils/int.h: -nanosrc/protocols/pair/../../utils/list.h: -nanosrc/protocols/pair/xpair.h: -nanosrc/protocols/pair/../../nn.h: -nanosrc/protocols/pair/../../nn_config.h: -nanosrc/protocols/pair/../../pair.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pair/xpair.deps b/crypto777/pnacl/Release/nanosrc/protocols/pair/xpair.deps deleted file mode 100644 index 279a05edd..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pair/xpair.deps +++ /dev/null @@ -1,36 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pair/xpair.o: \ - nanosrc/protocols/pair/xpair.c nanosrc/protocols/pair/xpair.h \ - nanosrc/protocols/pair/../../protocol.h \ - nanosrc/protocols/pair/../../utils/msg.h \ - nanosrc/protocols/pair/../../utils/chunkref.h \ - nanosrc/protocols/pair/../../utils/chunk.h \ - nanosrc/protocols/pair/../../utils/int.h \ - nanosrc/protocols/pair/../../utils/list.h \ - nanosrc/protocols/pair/../../nn.h \ - nanosrc/protocols/pair/../../nn_config.h \ - nanosrc/protocols/pair/../../pair.h \ - nanosrc/protocols/pair/../utils/excl.h \ - nanosrc/protocols/pair/../../utils/err.h \ - nanosrc/protocols/pair/../../utils/fast.h \ - nanosrc/protocols/pair/../../utils/cont.h \ - nanosrc/protocols/pair/../../utils/alloc.h \ - nanosrc/protocols/pair/../../utils/attr.h -: -nanosrc/protocols/pair/xpair.c: -nanosrc/protocols/pair/xpair.h: -nanosrc/protocols/pair/../../protocol.h: -nanosrc/protocols/pair/../../utils/msg.h: -nanosrc/protocols/pair/../../utils/chunkref.h: -nanosrc/protocols/pair/../../utils/chunk.h: -nanosrc/protocols/pair/../../utils/int.h: -nanosrc/protocols/pair/../../utils/list.h: -nanosrc/protocols/pair/../../nn.h: -nanosrc/protocols/pair/../../nn_config.h: -nanosrc/protocols/pair/../../pair.h: -nanosrc/protocols/pair/../utils/excl.h: -nanosrc/protocols/pair/../../utils/err.h: -nanosrc/protocols/pair/../../utils/fast.h: -nanosrc/protocols/pair/../../utils/cont.h: -nanosrc/protocols/pair/../../utils/alloc.h: -nanosrc/protocols/pair/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/pipeline/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/pull.deps b/crypto777/pnacl/Release/nanosrc/protocols/pipeline/pull.deps deleted file mode 100644 index dfc7220fd..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/pull.deps +++ /dev/null @@ -1,26 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pipeline/pull.o: \ - nanosrc/protocols/pipeline/pull.c nanosrc/protocols/pipeline/pull.h \ - nanosrc/protocols/pipeline/../../protocol.h \ - nanosrc/protocols/pipeline/../../utils/msg.h \ - nanosrc/protocols/pipeline/../../utils/chunkref.h \ - nanosrc/protocols/pipeline/../../utils/chunk.h \ - nanosrc/protocols/pipeline/../../utils/int.h \ - nanosrc/protocols/pipeline/../../utils/list.h \ - nanosrc/protocols/pipeline/xpull.h \ - nanosrc/protocols/pipeline/../../nn.h \ - nanosrc/protocols/pipeline/../../nn_config.h \ - nanosrc/protocols/pipeline/../../pipeline.h -: -nanosrc/protocols/pipeline/pull.c: -nanosrc/protocols/pipeline/pull.h: -nanosrc/protocols/pipeline/../../protocol.h: -nanosrc/protocols/pipeline/../../utils/msg.h: -nanosrc/protocols/pipeline/../../utils/chunkref.h: -nanosrc/protocols/pipeline/../../utils/chunk.h: -nanosrc/protocols/pipeline/../../utils/int.h: -nanosrc/protocols/pipeline/../../utils/list.h: -nanosrc/protocols/pipeline/xpull.h: -nanosrc/protocols/pipeline/../../nn.h: -nanosrc/protocols/pipeline/../../nn_config.h: -nanosrc/protocols/pipeline/../../pipeline.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/push.deps b/crypto777/pnacl/Release/nanosrc/protocols/pipeline/push.deps deleted file mode 100644 index 25542f50c..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/push.deps +++ /dev/null @@ -1,26 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pipeline/push.o: \ - nanosrc/protocols/pipeline/push.c nanosrc/protocols/pipeline/push.h \ - nanosrc/protocols/pipeline/../../protocol.h \ - nanosrc/protocols/pipeline/../../utils/msg.h \ - nanosrc/protocols/pipeline/../../utils/chunkref.h \ - nanosrc/protocols/pipeline/../../utils/chunk.h \ - nanosrc/protocols/pipeline/../../utils/int.h \ - nanosrc/protocols/pipeline/../../utils/list.h \ - nanosrc/protocols/pipeline/xpush.h \ - nanosrc/protocols/pipeline/../../nn.h \ - nanosrc/protocols/pipeline/../../nn_config.h \ - nanosrc/protocols/pipeline/../../pipeline.h -: -nanosrc/protocols/pipeline/push.c: -nanosrc/protocols/pipeline/push.h: -nanosrc/protocols/pipeline/../../protocol.h: -nanosrc/protocols/pipeline/../../utils/msg.h: -nanosrc/protocols/pipeline/../../utils/chunkref.h: -nanosrc/protocols/pipeline/../../utils/chunk.h: -nanosrc/protocols/pipeline/../../utils/int.h: -nanosrc/protocols/pipeline/../../utils/list.h: -nanosrc/protocols/pipeline/xpush.h: -nanosrc/protocols/pipeline/../../nn.h: -nanosrc/protocols/pipeline/../../nn_config.h: -nanosrc/protocols/pipeline/../../pipeline.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/xpull.deps b/crypto777/pnacl/Release/nanosrc/protocols/pipeline/xpull.deps deleted file mode 100644 index 9c0dfee43..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/xpull.deps +++ /dev/null @@ -1,38 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pipeline/xpull.o: \ - nanosrc/protocols/pipeline/xpull.c nanosrc/protocols/pipeline/xpull.h \ - nanosrc/protocols/pipeline/../../protocol.h \ - nanosrc/protocols/pipeline/../../utils/msg.h \ - nanosrc/protocols/pipeline/../../utils/chunkref.h \ - nanosrc/protocols/pipeline/../../utils/chunk.h \ - nanosrc/protocols/pipeline/../../utils/int.h \ - nanosrc/protocols/pipeline/../../utils/list.h \ - nanosrc/protocols/pipeline/../../nn.h \ - nanosrc/protocols/pipeline/../../nn_config.h \ - nanosrc/protocols/pipeline/../../pipeline.h \ - nanosrc/protocols/pipeline/../utils/fq.h \ - nanosrc/protocols/pipeline/../utils/priolist.h \ - nanosrc/protocols/pipeline/../../utils/err.h \ - nanosrc/protocols/pipeline/../../utils/fast.h \ - nanosrc/protocols/pipeline/../../utils/cont.h \ - nanosrc/protocols/pipeline/../../utils/alloc.h \ - nanosrc/protocols/pipeline/../../utils/attr.h -: -nanosrc/protocols/pipeline/xpull.c: -nanosrc/protocols/pipeline/xpull.h: -nanosrc/protocols/pipeline/../../protocol.h: -nanosrc/protocols/pipeline/../../utils/msg.h: -nanosrc/protocols/pipeline/../../utils/chunkref.h: -nanosrc/protocols/pipeline/../../utils/chunk.h: -nanosrc/protocols/pipeline/../../utils/int.h: -nanosrc/protocols/pipeline/../../utils/list.h: -nanosrc/protocols/pipeline/../../nn.h: -nanosrc/protocols/pipeline/../../nn_config.h: -nanosrc/protocols/pipeline/../../pipeline.h: -nanosrc/protocols/pipeline/../utils/fq.h: -nanosrc/protocols/pipeline/../utils/priolist.h: -nanosrc/protocols/pipeline/../../utils/err.h: -nanosrc/protocols/pipeline/../../utils/fast.h: -nanosrc/protocols/pipeline/../../utils/cont.h: -nanosrc/protocols/pipeline/../../utils/alloc.h: -nanosrc/protocols/pipeline/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/xpush.deps b/crypto777/pnacl/Release/nanosrc/protocols/pipeline/xpush.deps deleted file mode 100644 index 44b5677b9..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pipeline/xpush.deps +++ /dev/null @@ -1,38 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pipeline/xpush.o: \ - nanosrc/protocols/pipeline/xpush.c nanosrc/protocols/pipeline/xpush.h \ - nanosrc/protocols/pipeline/../../protocol.h \ - nanosrc/protocols/pipeline/../../utils/msg.h \ - nanosrc/protocols/pipeline/../../utils/chunkref.h \ - nanosrc/protocols/pipeline/../../utils/chunk.h \ - nanosrc/protocols/pipeline/../../utils/int.h \ - nanosrc/protocols/pipeline/../../utils/list.h \ - nanosrc/protocols/pipeline/../../nn.h \ - nanosrc/protocols/pipeline/../../nn_config.h \ - nanosrc/protocols/pipeline/../../pipeline.h \ - nanosrc/protocols/pipeline/../utils/lb.h \ - nanosrc/protocols/pipeline/../utils/priolist.h \ - nanosrc/protocols/pipeline/../../utils/err.h \ - nanosrc/protocols/pipeline/../../utils/fast.h \ - nanosrc/protocols/pipeline/../../utils/cont.h \ - nanosrc/protocols/pipeline/../../utils/alloc.h \ - nanosrc/protocols/pipeline/../../utils/attr.h -: -nanosrc/protocols/pipeline/xpush.c: -nanosrc/protocols/pipeline/xpush.h: -nanosrc/protocols/pipeline/../../protocol.h: -nanosrc/protocols/pipeline/../../utils/msg.h: -nanosrc/protocols/pipeline/../../utils/chunkref.h: -nanosrc/protocols/pipeline/../../utils/chunk.h: -nanosrc/protocols/pipeline/../../utils/int.h: -nanosrc/protocols/pipeline/../../utils/list.h: -nanosrc/protocols/pipeline/../../nn.h: -nanosrc/protocols/pipeline/../../nn_config.h: -nanosrc/protocols/pipeline/../../pipeline.h: -nanosrc/protocols/pipeline/../utils/lb.h: -nanosrc/protocols/pipeline/../utils/priolist.h: -nanosrc/protocols/pipeline/../../utils/err.h: -nanosrc/protocols/pipeline/../../utils/fast.h: -nanosrc/protocols/pipeline/../../utils/cont.h: -nanosrc/protocols/pipeline/../../utils/alloc.h: -nanosrc/protocols/pipeline/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/pubsub/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/pub.deps b/crypto777/pnacl/Release/nanosrc/protocols/pubsub/pub.deps deleted file mode 100644 index e49bbc562..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/pub.deps +++ /dev/null @@ -1,25 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pubsub/pub.o: \ - nanosrc/protocols/pubsub/pub.c nanosrc/protocols/pubsub/pub.h \ - nanosrc/protocols/pubsub/../../protocol.h \ - nanosrc/protocols/pubsub/../../utils/msg.h \ - nanosrc/protocols/pubsub/../../utils/chunkref.h \ - nanosrc/protocols/pubsub/../../utils/chunk.h \ - nanosrc/protocols/pubsub/../../utils/int.h \ - nanosrc/protocols/pubsub/../../utils/list.h \ - nanosrc/protocols/pubsub/xpub.h nanosrc/protocols/pubsub/../../nn.h \ - nanosrc/protocols/pubsub/../../nn_config.h \ - nanosrc/protocols/pubsub/../../pubsub.h -: -nanosrc/protocols/pubsub/pub.c: -nanosrc/protocols/pubsub/pub.h: -nanosrc/protocols/pubsub/../../protocol.h: -nanosrc/protocols/pubsub/../../utils/msg.h: -nanosrc/protocols/pubsub/../../utils/chunkref.h: -nanosrc/protocols/pubsub/../../utils/chunk.h: -nanosrc/protocols/pubsub/../../utils/int.h: -nanosrc/protocols/pubsub/../../utils/list.h: -nanosrc/protocols/pubsub/xpub.h: -nanosrc/protocols/pubsub/../../nn.h: -nanosrc/protocols/pubsub/../../nn_config.h: -nanosrc/protocols/pubsub/../../pubsub.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/sub.deps b/crypto777/pnacl/Release/nanosrc/protocols/pubsub/sub.deps deleted file mode 100644 index 9f71e3453..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/sub.deps +++ /dev/null @@ -1,25 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pubsub/sub.o: \ - nanosrc/protocols/pubsub/sub.c nanosrc/protocols/pubsub/sub.h \ - nanosrc/protocols/pubsub/../../protocol.h \ - nanosrc/protocols/pubsub/../../utils/msg.h \ - nanosrc/protocols/pubsub/../../utils/chunkref.h \ - nanosrc/protocols/pubsub/../../utils/chunk.h \ - nanosrc/protocols/pubsub/../../utils/int.h \ - nanosrc/protocols/pubsub/../../utils/list.h \ - nanosrc/protocols/pubsub/xsub.h nanosrc/protocols/pubsub/../../nn.h \ - nanosrc/protocols/pubsub/../../nn_config.h \ - nanosrc/protocols/pubsub/../../pubsub.h -: -nanosrc/protocols/pubsub/sub.c: -nanosrc/protocols/pubsub/sub.h: -nanosrc/protocols/pubsub/../../protocol.h: -nanosrc/protocols/pubsub/../../utils/msg.h: -nanosrc/protocols/pubsub/../../utils/chunkref.h: -nanosrc/protocols/pubsub/../../utils/chunk.h: -nanosrc/protocols/pubsub/../../utils/int.h: -nanosrc/protocols/pubsub/../../utils/list.h: -nanosrc/protocols/pubsub/xsub.h: -nanosrc/protocols/pubsub/../../nn.h: -nanosrc/protocols/pubsub/../../nn_config.h: -nanosrc/protocols/pubsub/../../pubsub.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/trie.deps b/crypto777/pnacl/Release/nanosrc/protocols/pubsub/trie.deps deleted file mode 100644 index 2819c62a5..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/trie.deps +++ /dev/null @@ -1,18 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pubsub/trie.o: \ - nanosrc/protocols/pubsub/trie.c nanosrc/protocols/pubsub/trie.h \ - nanosrc/protocols/pubsub/../../utils/int.h \ - nanosrc/protocols/pubsub/../../utils/alloc.h \ - nanosrc/protocols/pubsub/../../utils/fast.h \ - nanosrc/protocols/pubsub/../../utils/err.h \ - nanosrc/protocols/pubsub/../../utils/../nn.h \ - nanosrc/protocols/pubsub/../../utils/../nn_config.h -: -nanosrc/protocols/pubsub/trie.c: -nanosrc/protocols/pubsub/trie.h: -nanosrc/protocols/pubsub/../../utils/int.h: -nanosrc/protocols/pubsub/../../utils/alloc.h: -nanosrc/protocols/pubsub/../../utils/fast.h: -nanosrc/protocols/pubsub/../../utils/err.h: -nanosrc/protocols/pubsub/../../utils/../nn.h: -nanosrc/protocols/pubsub/../../utils/../nn_config.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/xpub.deps b/crypto777/pnacl/Release/nanosrc/protocols/pubsub/xpub.deps deleted file mode 100644 index 71ea42397..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/xpub.deps +++ /dev/null @@ -1,36 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pubsub/xpub.o: \ - nanosrc/protocols/pubsub/xpub.c nanosrc/protocols/pubsub/xpub.h \ - nanosrc/protocols/pubsub/../../protocol.h \ - nanosrc/protocols/pubsub/../../utils/msg.h \ - nanosrc/protocols/pubsub/../../utils/chunkref.h \ - nanosrc/protocols/pubsub/../../utils/chunk.h \ - nanosrc/protocols/pubsub/../../utils/int.h \ - nanosrc/protocols/pubsub/../../utils/list.h \ - nanosrc/protocols/pubsub/../../nn.h \ - nanosrc/protocols/pubsub/../../nn_config.h \ - nanosrc/protocols/pubsub/../../pubsub.h \ - nanosrc/protocols/pubsub/../utils/dist.h \ - nanosrc/protocols/pubsub/../../utils/err.h \ - nanosrc/protocols/pubsub/../../utils/fast.h \ - nanosrc/protocols/pubsub/../../utils/cont.h \ - nanosrc/protocols/pubsub/../../utils/alloc.h \ - nanosrc/protocols/pubsub/../../utils/attr.h -: -nanosrc/protocols/pubsub/xpub.c: -nanosrc/protocols/pubsub/xpub.h: -nanosrc/protocols/pubsub/../../protocol.h: -nanosrc/protocols/pubsub/../../utils/msg.h: -nanosrc/protocols/pubsub/../../utils/chunkref.h: -nanosrc/protocols/pubsub/../../utils/chunk.h: -nanosrc/protocols/pubsub/../../utils/int.h: -nanosrc/protocols/pubsub/../../utils/list.h: -nanosrc/protocols/pubsub/../../nn.h: -nanosrc/protocols/pubsub/../../nn_config.h: -nanosrc/protocols/pubsub/../../pubsub.h: -nanosrc/protocols/pubsub/../utils/dist.h: -nanosrc/protocols/pubsub/../../utils/err.h: -nanosrc/protocols/pubsub/../../utils/fast.h: -nanosrc/protocols/pubsub/../../utils/cont.h: -nanosrc/protocols/pubsub/../../utils/alloc.h: -nanosrc/protocols/pubsub/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/xsub.deps b/crypto777/pnacl/Release/nanosrc/protocols/pubsub/xsub.deps deleted file mode 100644 index aebbd21b0..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/pubsub/xsub.deps +++ /dev/null @@ -1,39 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/pubsub/xsub.o: \ - nanosrc/protocols/pubsub/xsub.c nanosrc/protocols/pubsub/xsub.h \ - nanosrc/protocols/pubsub/../../protocol.h \ - nanosrc/protocols/pubsub/../../utils/msg.h \ - nanosrc/protocols/pubsub/../../utils/chunkref.h \ - nanosrc/protocols/pubsub/../../utils/chunk.h \ - nanosrc/protocols/pubsub/../../utils/int.h \ - nanosrc/protocols/pubsub/../../utils/list.h \ - nanosrc/protocols/pubsub/trie.h nanosrc/protocols/pubsub/../../nn.h \ - nanosrc/protocols/pubsub/../../nn_config.h \ - nanosrc/protocols/pubsub/../../pubsub.h \ - nanosrc/protocols/pubsub/../utils/fq.h \ - nanosrc/protocols/pubsub/../utils/priolist.h \ - nanosrc/protocols/pubsub/../../utils/err.h \ - nanosrc/protocols/pubsub/../../utils/fast.h \ - nanosrc/protocols/pubsub/../../utils/cont.h \ - nanosrc/protocols/pubsub/../../utils/alloc.h \ - nanosrc/protocols/pubsub/../../utils/attr.h -: -nanosrc/protocols/pubsub/xsub.c: -nanosrc/protocols/pubsub/xsub.h: -nanosrc/protocols/pubsub/../../protocol.h: -nanosrc/protocols/pubsub/../../utils/msg.h: -nanosrc/protocols/pubsub/../../utils/chunkref.h: -nanosrc/protocols/pubsub/../../utils/chunk.h: -nanosrc/protocols/pubsub/../../utils/int.h: -nanosrc/protocols/pubsub/../../utils/list.h: -nanosrc/protocols/pubsub/trie.h: -nanosrc/protocols/pubsub/../../nn.h: -nanosrc/protocols/pubsub/../../nn_config.h: -nanosrc/protocols/pubsub/../../pubsub.h: -nanosrc/protocols/pubsub/../utils/fq.h: -nanosrc/protocols/pubsub/../utils/priolist.h: -nanosrc/protocols/pubsub/../../utils/err.h: -nanosrc/protocols/pubsub/../../utils/fast.h: -nanosrc/protocols/pubsub/../../utils/cont.h: -nanosrc/protocols/pubsub/../../utils/alloc.h: -nanosrc/protocols/pubsub/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/reqrep/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/rep.deps b/crypto777/pnacl/Release/nanosrc/protocols/reqrep/rep.deps deleted file mode 100644 index 637b22055..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/rep.deps +++ /dev/null @@ -1,42 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/reqrep/rep.o: \ - nanosrc/protocols/reqrep/rep.c nanosrc/protocols/reqrep/rep.h \ - nanosrc/protocols/reqrep/../../protocol.h \ - nanosrc/protocols/reqrep/../../utils/msg.h \ - nanosrc/protocols/reqrep/../../utils/chunkref.h \ - nanosrc/protocols/reqrep/../../utils/chunk.h \ - nanosrc/protocols/reqrep/../../utils/int.h \ - nanosrc/protocols/reqrep/../../utils/list.h \ - nanosrc/protocols/reqrep/xrep.h \ - nanosrc/protocols/reqrep/../../utils/hash.h \ - nanosrc/protocols/reqrep/../utils/fq.h \ - nanosrc/protocols/reqrep/../utils/priolist.h \ - nanosrc/protocols/reqrep/../../nn.h \ - nanosrc/protocols/reqrep/../../nn_config.h \ - nanosrc/protocols/reqrep/../../reqrep.h \ - nanosrc/protocols/reqrep/../../utils/err.h \ - nanosrc/protocols/reqrep/../../utils/fast.h \ - nanosrc/protocols/reqrep/../../utils/cont.h \ - nanosrc/protocols/reqrep/../../utils/alloc.h \ - nanosrc/protocols/reqrep/../../utils/wire.h -: -nanosrc/protocols/reqrep/rep.c: -nanosrc/protocols/reqrep/rep.h: -nanosrc/protocols/reqrep/../../protocol.h: -nanosrc/protocols/reqrep/../../utils/msg.h: -nanosrc/protocols/reqrep/../../utils/chunkref.h: -nanosrc/protocols/reqrep/../../utils/chunk.h: -nanosrc/protocols/reqrep/../../utils/int.h: -nanosrc/protocols/reqrep/../../utils/list.h: -nanosrc/protocols/reqrep/xrep.h: -nanosrc/protocols/reqrep/../../utils/hash.h: -nanosrc/protocols/reqrep/../utils/fq.h: -nanosrc/protocols/reqrep/../utils/priolist.h: -nanosrc/protocols/reqrep/../../nn.h: -nanosrc/protocols/reqrep/../../nn_config.h: -nanosrc/protocols/reqrep/../../reqrep.h: -nanosrc/protocols/reqrep/../../utils/err.h: -nanosrc/protocols/reqrep/../../utils/fast.h: -nanosrc/protocols/reqrep/../../utils/cont.h: -nanosrc/protocols/reqrep/../../utils/alloc.h: -nanosrc/protocols/reqrep/../../utils/wire.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/req.deps b/crypto777/pnacl/Release/nanosrc/protocols/reqrep/req.deps deleted file mode 100644 index 3c7b71e7d..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/req.deps +++ /dev/null @@ -1,81 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/reqrep/req.o: \ - nanosrc/protocols/reqrep/req.c nanosrc/protocols/reqrep/req.h \ - nanosrc/protocols/reqrep/xreq.h \ - nanosrc/protocols/reqrep/../../protocol.h \ - nanosrc/protocols/reqrep/../../utils/msg.h \ - nanosrc/protocols/reqrep/../../utils/chunkref.h \ - nanosrc/protocols/reqrep/../../utils/chunk.h \ - nanosrc/protocols/reqrep/../../utils/int.h \ - nanosrc/protocols/reqrep/../../utils/list.h \ - nanosrc/protocols/reqrep/../utils/lb.h \ - nanosrc/protocols/reqrep/../utils/priolist.h \ - nanosrc/protocols/reqrep/../utils/fq.h nanosrc/protocols/reqrep/task.h \ - nanosrc/protocols/reqrep/../../reqrep.h \ - nanosrc/protocols/reqrep/../../nn.h \ - nanosrc/protocols/reqrep/../../nn_config.h \ - nanosrc/protocols/reqrep/../../aio/fsm.h \ - nanosrc/protocols/reqrep/../../aio/../utils/queue.h \ - nanosrc/protocols/reqrep/../../aio/timer.h \ - nanosrc/protocols/reqrep/../../aio/worker.h \ - nanosrc/protocols/reqrep/../../aio/timerset.h \ - nanosrc/protocols/reqrep/../../aio/../utils/clock.h \ - nanosrc/protocols/reqrep/../../aio/worker_posix.h \ - nanosrc/protocols/reqrep/../../aio/../utils/mutex.h \ - nanosrc/protocols/reqrep/../../aio/../utils/thread.h \ - nanosrc/protocols/reqrep/../../utils/thread_posix.h \ - nanosrc/protocols/reqrep/../../aio/../utils/efd.h \ - nanosrc/protocols/reqrep/../../utils/fd.h \ - nanosrc/protocols/reqrep/../../utils/efd_pipe.h \ - nanosrc/protocols/reqrep/../../aio/poller.h \ - nanosrc/protocols/reqrep/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/protocols/reqrep/../../utils/err.h \ - nanosrc/protocols/reqrep/../../utils/fast.h \ - nanosrc/protocols/reqrep/../../utils/cont.h \ - nanosrc/protocols/reqrep/../../utils/alloc.h \ - nanosrc/protocols/reqrep/../../utils/random.h \ - nanosrc/protocols/reqrep/../../utils/wire.h \ - nanosrc/protocols/reqrep/../../utils/attr.h -: -nanosrc/protocols/reqrep/req.c: -nanosrc/protocols/reqrep/req.h: -nanosrc/protocols/reqrep/xreq.h: -nanosrc/protocols/reqrep/../../protocol.h: -nanosrc/protocols/reqrep/../../utils/msg.h: -nanosrc/protocols/reqrep/../../utils/chunkref.h: -nanosrc/protocols/reqrep/../../utils/chunk.h: -nanosrc/protocols/reqrep/../../utils/int.h: -nanosrc/protocols/reqrep/../../utils/list.h: -nanosrc/protocols/reqrep/../utils/lb.h: -nanosrc/protocols/reqrep/../utils/priolist.h: -nanosrc/protocols/reqrep/../utils/fq.h: -nanosrc/protocols/reqrep/task.h: -nanosrc/protocols/reqrep/../../reqrep.h: -nanosrc/protocols/reqrep/../../nn.h: -nanosrc/protocols/reqrep/../../nn_config.h: -nanosrc/protocols/reqrep/../../aio/fsm.h: -nanosrc/protocols/reqrep/../../aio/../utils/queue.h: -nanosrc/protocols/reqrep/../../aio/timer.h: -nanosrc/protocols/reqrep/../../aio/worker.h: -nanosrc/protocols/reqrep/../../aio/timerset.h: -nanosrc/protocols/reqrep/../../aio/../utils/clock.h: -nanosrc/protocols/reqrep/../../aio/worker_posix.h: -nanosrc/protocols/reqrep/../../aio/../utils/mutex.h: -nanosrc/protocols/reqrep/../../aio/../utils/thread.h: -nanosrc/protocols/reqrep/../../utils/thread_posix.h: -nanosrc/protocols/reqrep/../../aio/../utils/efd.h: -nanosrc/protocols/reqrep/../../utils/fd.h: -nanosrc/protocols/reqrep/../../utils/efd_pipe.h: -nanosrc/protocols/reqrep/../../aio/poller.h: -nanosrc/protocols/reqrep/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/protocols/reqrep/../../utils/err.h: -nanosrc/protocols/reqrep/../../utils/fast.h: -nanosrc/protocols/reqrep/../../utils/cont.h: -nanosrc/protocols/reqrep/../../utils/alloc.h: -nanosrc/protocols/reqrep/../../utils/random.h: -nanosrc/protocols/reqrep/../../utils/wire.h: -nanosrc/protocols/reqrep/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/task.deps b/crypto777/pnacl/Release/nanosrc/protocols/reqrep/task.deps deleted file mode 100644 index e08688320..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/task.deps +++ /dev/null @@ -1,56 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/reqrep/task.o: \ - nanosrc/protocols/reqrep/task.c nanosrc/protocols/reqrep/task.h \ - nanosrc/protocols/reqrep/../../reqrep.h \ - nanosrc/protocols/reqrep/../../nn.h \ - nanosrc/protocols/reqrep/../../nn_config.h \ - nanosrc/protocols/reqrep/../../aio/fsm.h \ - nanosrc/protocols/reqrep/../../aio/../utils/queue.h \ - nanosrc/protocols/reqrep/../../aio/timer.h \ - nanosrc/protocols/reqrep/../../aio/worker.h \ - nanosrc/protocols/reqrep/../../aio/timerset.h \ - nanosrc/protocols/reqrep/../../aio/../utils/clock.h \ - nanosrc/protocols/reqrep/../../aio/../utils/int.h \ - nanosrc/protocols/reqrep/../../aio/../utils/list.h \ - nanosrc/protocols/reqrep/../../aio/worker_posix.h \ - nanosrc/protocols/reqrep/../../aio/../utils/mutex.h \ - nanosrc/protocols/reqrep/../../aio/../utils/thread.h \ - nanosrc/protocols/reqrep/../../aio/../utils/thread_posix.h \ - nanosrc/protocols/reqrep/../../aio/../utils/efd.h \ - nanosrc/protocols/reqrep/../../aio/../utils/fd.h \ - nanosrc/protocols/reqrep/../../aio/../utils/efd_pipe.h \ - nanosrc/protocols/reqrep/../../aio/poller.h \ - nanosrc/protocols/reqrep/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/protocols/reqrep/../../utils/msg.h \ - nanosrc/protocols/reqrep/../../aio/../utils/chunkref.h \ - nanosrc/protocols/reqrep/../../aio/../utils/chunk.h -: -nanosrc/protocols/reqrep/task.c: -nanosrc/protocols/reqrep/task.h: -nanosrc/protocols/reqrep/../../reqrep.h: -nanosrc/protocols/reqrep/../../nn.h: -nanosrc/protocols/reqrep/../../nn_config.h: -nanosrc/protocols/reqrep/../../aio/fsm.h: -nanosrc/protocols/reqrep/../../aio/../utils/queue.h: -nanosrc/protocols/reqrep/../../aio/timer.h: -nanosrc/protocols/reqrep/../../aio/worker.h: -nanosrc/protocols/reqrep/../../aio/timerset.h: -nanosrc/protocols/reqrep/../../aio/../utils/clock.h: -nanosrc/protocols/reqrep/../../aio/../utils/int.h: -nanosrc/protocols/reqrep/../../aio/../utils/list.h: -nanosrc/protocols/reqrep/../../aio/worker_posix.h: -nanosrc/protocols/reqrep/../../aio/../utils/mutex.h: -nanosrc/protocols/reqrep/../../aio/../utils/thread.h: -nanosrc/protocols/reqrep/../../aio/../utils/thread_posix.h: -nanosrc/protocols/reqrep/../../aio/../utils/efd.h: -nanosrc/protocols/reqrep/../../aio/../utils/fd.h: -nanosrc/protocols/reqrep/../../aio/../utils/efd_pipe.h: -nanosrc/protocols/reqrep/../../aio/poller.h: -nanosrc/protocols/reqrep/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/protocols/reqrep/../../utils/msg.h: -nanosrc/protocols/reqrep/../../aio/../utils/chunkref.h: -nanosrc/protocols/reqrep/../../aio/../utils/chunk.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/xrep.deps b/crypto777/pnacl/Release/nanosrc/protocols/reqrep/xrep.deps deleted file mode 100644 index c3a525c98..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/xrep.deps +++ /dev/null @@ -1,44 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/reqrep/xrep.o: \ - nanosrc/protocols/reqrep/xrep.c nanosrc/protocols/reqrep/xrep.h \ - nanosrc/protocols/reqrep/../../protocol.h \ - nanosrc/protocols/reqrep/../../utils/msg.h \ - nanosrc/protocols/reqrep/../../utils/chunkref.h \ - nanosrc/protocols/reqrep/../../utils/chunk.h \ - nanosrc/protocols/reqrep/../../utils/int.h \ - nanosrc/protocols/reqrep/../../utils/list.h \ - nanosrc/protocols/reqrep/../../utils/hash.h \ - nanosrc/protocols/reqrep/../utils/fq.h \ - nanosrc/protocols/reqrep/../utils/priolist.h \ - nanosrc/protocols/reqrep/../../nn.h \ - nanosrc/protocols/reqrep/../../nn_config.h \ - nanosrc/protocols/reqrep/../../reqrep.h \ - nanosrc/protocols/reqrep/../../utils/err.h \ - nanosrc/protocols/reqrep/../../utils/fast.h \ - nanosrc/protocols/reqrep/../../utils/cont.h \ - nanosrc/protocols/reqrep/../../utils/alloc.h \ - nanosrc/protocols/reqrep/../../utils/random.h \ - nanosrc/protocols/reqrep/../../utils/wire.h \ - nanosrc/protocols/reqrep/../../utils/attr.h -: -nanosrc/protocols/reqrep/xrep.c: -nanosrc/protocols/reqrep/xrep.h: -nanosrc/protocols/reqrep/../../protocol.h: -nanosrc/protocols/reqrep/../../utils/msg.h: -nanosrc/protocols/reqrep/../../utils/chunkref.h: -nanosrc/protocols/reqrep/../../utils/chunk.h: -nanosrc/protocols/reqrep/../../utils/int.h: -nanosrc/protocols/reqrep/../../utils/list.h: -nanosrc/protocols/reqrep/../../utils/hash.h: -nanosrc/protocols/reqrep/../utils/fq.h: -nanosrc/protocols/reqrep/../utils/priolist.h: -nanosrc/protocols/reqrep/../../nn.h: -nanosrc/protocols/reqrep/../../nn_config.h: -nanosrc/protocols/reqrep/../../reqrep.h: -nanosrc/protocols/reqrep/../../utils/err.h: -nanosrc/protocols/reqrep/../../utils/fast.h: -nanosrc/protocols/reqrep/../../utils/cont.h: -nanosrc/protocols/reqrep/../../utils/alloc.h: -nanosrc/protocols/reqrep/../../utils/random.h: -nanosrc/protocols/reqrep/../../utils/wire.h: -nanosrc/protocols/reqrep/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/xreq.deps b/crypto777/pnacl/Release/nanosrc/protocols/reqrep/xreq.deps deleted file mode 100644 index a7fdec6ef..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/reqrep/xreq.deps +++ /dev/null @@ -1,40 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/reqrep/xreq.o: \ - nanosrc/protocols/reqrep/xreq.c nanosrc/protocols/reqrep/xreq.h \ - nanosrc/protocols/reqrep/../../protocol.h \ - nanosrc/protocols/reqrep/../../utils/msg.h \ - nanosrc/protocols/reqrep/../../utils/chunkref.h \ - nanosrc/protocols/reqrep/../../utils/chunk.h \ - nanosrc/protocols/reqrep/../../utils/int.h \ - nanosrc/protocols/reqrep/../../utils/list.h \ - nanosrc/protocols/reqrep/../utils/lb.h \ - nanosrc/protocols/reqrep/../utils/priolist.h \ - nanosrc/protocols/reqrep/../utils/fq.h \ - nanosrc/protocols/reqrep/../../nn.h \ - nanosrc/protocols/reqrep/../../nn_config.h \ - nanosrc/protocols/reqrep/../../reqrep.h \ - nanosrc/protocols/reqrep/../../utils/err.h \ - nanosrc/protocols/reqrep/../../utils/fast.h \ - nanosrc/protocols/reqrep/../../utils/cont.h \ - nanosrc/protocols/reqrep/../../utils/alloc.h \ - nanosrc/protocols/reqrep/../../utils/attr.h -: -nanosrc/protocols/reqrep/xreq.c: -nanosrc/protocols/reqrep/xreq.h: -nanosrc/protocols/reqrep/../../protocol.h: -nanosrc/protocols/reqrep/../../utils/msg.h: -nanosrc/protocols/reqrep/../../utils/chunkref.h: -nanosrc/protocols/reqrep/../../utils/chunk.h: -nanosrc/protocols/reqrep/../../utils/int.h: -nanosrc/protocols/reqrep/../../utils/list.h: -nanosrc/protocols/reqrep/../utils/lb.h: -nanosrc/protocols/reqrep/../utils/priolist.h: -nanosrc/protocols/reqrep/../utils/fq.h: -nanosrc/protocols/reqrep/../../nn.h: -nanosrc/protocols/reqrep/../../nn_config.h: -nanosrc/protocols/reqrep/../../reqrep.h: -nanosrc/protocols/reqrep/../../utils/err.h: -nanosrc/protocols/reqrep/../../utils/fast.h: -nanosrc/protocols/reqrep/../../utils/cont.h: -nanosrc/protocols/reqrep/../../utils/alloc.h: -nanosrc/protocols/reqrep/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/survey/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/survey/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/survey/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/survey/respondent.deps b/crypto777/pnacl/Release/nanosrc/protocols/survey/respondent.deps deleted file mode 100644 index 7333731fa..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/survey/respondent.deps +++ /dev/null @@ -1,43 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/survey/respondent.o: \ - nanosrc/protocols/survey/respondent.c \ - nanosrc/protocols/survey/respondent.h \ - nanosrc/protocols/survey/../../protocol.h \ - nanosrc/protocols/survey/../../utils/msg.h \ - nanosrc/protocols/survey/../../utils/chunkref.h \ - nanosrc/protocols/survey/../../utils/chunk.h \ - nanosrc/protocols/survey/../../utils/int.h \ - nanosrc/protocols/survey/../../utils/list.h \ - nanosrc/protocols/survey/xrespondent.h \ - nanosrc/protocols/survey/../../utils/hash.h \ - nanosrc/protocols/survey/../utils/fq.h \ - nanosrc/protocols/survey/../utils/priolist.h \ - nanosrc/protocols/survey/../../nn.h \ - nanosrc/protocols/survey/../../nn_config.h \ - nanosrc/protocols/survey/../../survey.h \ - nanosrc/protocols/survey/../../utils/err.h \ - nanosrc/protocols/survey/../../utils/fast.h \ - nanosrc/protocols/survey/../../utils/cont.h \ - nanosrc/protocols/survey/../../utils/alloc.h \ - nanosrc/protocols/survey/../../utils/wire.h -: -nanosrc/protocols/survey/respondent.c: -nanosrc/protocols/survey/respondent.h: -nanosrc/protocols/survey/../../protocol.h: -nanosrc/protocols/survey/../../utils/msg.h: -nanosrc/protocols/survey/../../utils/chunkref.h: -nanosrc/protocols/survey/../../utils/chunk.h: -nanosrc/protocols/survey/../../utils/int.h: -nanosrc/protocols/survey/../../utils/list.h: -nanosrc/protocols/survey/xrespondent.h: -nanosrc/protocols/survey/../../utils/hash.h: -nanosrc/protocols/survey/../utils/fq.h: -nanosrc/protocols/survey/../utils/priolist.h: -nanosrc/protocols/survey/../../nn.h: -nanosrc/protocols/survey/../../nn_config.h: -nanosrc/protocols/survey/../../survey.h: -nanosrc/protocols/survey/../../utils/err.h: -nanosrc/protocols/survey/../../utils/fast.h: -nanosrc/protocols/survey/../../utils/cont.h: -nanosrc/protocols/survey/../../utils/alloc.h: -nanosrc/protocols/survey/../../utils/wire.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/survey/surveyor.deps b/crypto777/pnacl/Release/nanosrc/protocols/survey/surveyor.deps deleted file mode 100644 index 2f5bf45ab..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/survey/surveyor.deps +++ /dev/null @@ -1,81 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/survey/surveyor.o: \ - nanosrc/protocols/survey/surveyor.c \ - nanosrc/protocols/survey/surveyor.h \ - nanosrc/protocols/survey/../../protocol.h \ - nanosrc/protocols/survey/../../utils/msg.h \ - nanosrc/protocols/survey/../../utils/chunkref.h \ - nanosrc/protocols/survey/../../utils/chunk.h \ - nanosrc/protocols/survey/../../utils/int.h \ - nanosrc/protocols/survey/../../utils/list.h \ - nanosrc/protocols/survey/xsurveyor.h \ - nanosrc/protocols/survey/../utils/dist.h \ - nanosrc/protocols/survey/../utils/fq.h \ - nanosrc/protocols/survey/../utils/priolist.h \ - nanosrc/protocols/survey/../../nn.h \ - nanosrc/protocols/survey/../../nn_config.h \ - nanosrc/protocols/survey/../../survey.h \ - nanosrc/protocols/survey/../../aio/fsm.h \ - nanosrc/protocols/survey/../../aio/../utils/queue.h \ - nanosrc/protocols/survey/../../aio/timer.h \ - nanosrc/protocols/survey/../../aio/worker.h \ - nanosrc/protocols/survey/../../aio/timerset.h \ - nanosrc/protocols/survey/../../aio/../utils/clock.h \ - nanosrc/protocols/survey/../../aio/worker_posix.h \ - nanosrc/protocols/survey/../../aio/../utils/mutex.h \ - nanosrc/protocols/survey/../../aio/../utils/thread.h \ - nanosrc/protocols/survey/../../utils/thread_posix.h \ - nanosrc/protocols/survey/../../aio/../utils/efd.h \ - nanosrc/protocols/survey/../../utils/fd.h \ - nanosrc/protocols/survey/../../utils/efd_pipe.h \ - nanosrc/protocols/survey/../../aio/poller.h \ - nanosrc/protocols/survey/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/protocols/survey/../../utils/err.h \ - nanosrc/protocols/survey/../../utils/fast.h \ - nanosrc/protocols/survey/../../utils/cont.h \ - nanosrc/protocols/survey/../../utils/wire.h \ - nanosrc/protocols/survey/../../utils/alloc.h \ - nanosrc/protocols/survey/../../utils/random.h \ - nanosrc/protocols/survey/../../utils/attr.h -: -nanosrc/protocols/survey/surveyor.c: -nanosrc/protocols/survey/surveyor.h: -nanosrc/protocols/survey/../../protocol.h: -nanosrc/protocols/survey/../../utils/msg.h: -nanosrc/protocols/survey/../../utils/chunkref.h: -nanosrc/protocols/survey/../../utils/chunk.h: -nanosrc/protocols/survey/../../utils/int.h: -nanosrc/protocols/survey/../../utils/list.h: -nanosrc/protocols/survey/xsurveyor.h: -nanosrc/protocols/survey/../utils/dist.h: -nanosrc/protocols/survey/../utils/fq.h: -nanosrc/protocols/survey/../utils/priolist.h: -nanosrc/protocols/survey/../../nn.h: -nanosrc/protocols/survey/../../nn_config.h: -nanosrc/protocols/survey/../../survey.h: -nanosrc/protocols/survey/../../aio/fsm.h: -nanosrc/protocols/survey/../../aio/../utils/queue.h: -nanosrc/protocols/survey/../../aio/timer.h: -nanosrc/protocols/survey/../../aio/worker.h: -nanosrc/protocols/survey/../../aio/timerset.h: -nanosrc/protocols/survey/../../aio/../utils/clock.h: -nanosrc/protocols/survey/../../aio/worker_posix.h: -nanosrc/protocols/survey/../../aio/../utils/mutex.h: -nanosrc/protocols/survey/../../aio/../utils/thread.h: -nanosrc/protocols/survey/../../utils/thread_posix.h: -nanosrc/protocols/survey/../../aio/../utils/efd.h: -nanosrc/protocols/survey/../../utils/fd.h: -nanosrc/protocols/survey/../../utils/efd_pipe.h: -nanosrc/protocols/survey/../../aio/poller.h: -nanosrc/protocols/survey/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/protocols/survey/../../utils/err.h: -nanosrc/protocols/survey/../../utils/fast.h: -nanosrc/protocols/survey/../../utils/cont.h: -nanosrc/protocols/survey/../../utils/wire.h: -nanosrc/protocols/survey/../../utils/alloc.h: -nanosrc/protocols/survey/../../utils/random.h: -nanosrc/protocols/survey/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/survey/xrespondent.deps b/crypto777/pnacl/Release/nanosrc/protocols/survey/xrespondent.deps deleted file mode 100644 index c6d4b1237..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/survey/xrespondent.deps +++ /dev/null @@ -1,45 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/survey/xrespondent.o: \ - nanosrc/protocols/survey/xrespondent.c \ - nanosrc/protocols/survey/xrespondent.h \ - nanosrc/protocols/survey/../../protocol.h \ - nanosrc/protocols/survey/../../utils/msg.h \ - nanosrc/protocols/survey/../../utils/chunkref.h \ - nanosrc/protocols/survey/../../utils/chunk.h \ - nanosrc/protocols/survey/../../utils/int.h \ - nanosrc/protocols/survey/../../utils/list.h \ - nanosrc/protocols/survey/../../utils/hash.h \ - nanosrc/protocols/survey/../utils/fq.h \ - nanosrc/protocols/survey/../utils/priolist.h \ - nanosrc/protocols/survey/../../nn.h \ - nanosrc/protocols/survey/../../nn_config.h \ - nanosrc/protocols/survey/../../survey.h \ - nanosrc/protocols/survey/../../utils/err.h \ - nanosrc/protocols/survey/../../utils/fast.h \ - nanosrc/protocols/survey/../../utils/cont.h \ - nanosrc/protocols/survey/../../utils/alloc.h \ - nanosrc/protocols/survey/../../utils/random.h \ - nanosrc/protocols/survey/../../utils/wire.h \ - nanosrc/protocols/survey/../../utils/attr.h -: -nanosrc/protocols/survey/xrespondent.c: -nanosrc/protocols/survey/xrespondent.h: -nanosrc/protocols/survey/../../protocol.h: -nanosrc/protocols/survey/../../utils/msg.h: -nanosrc/protocols/survey/../../utils/chunkref.h: -nanosrc/protocols/survey/../../utils/chunk.h: -nanosrc/protocols/survey/../../utils/int.h: -nanosrc/protocols/survey/../../utils/list.h: -nanosrc/protocols/survey/../../utils/hash.h: -nanosrc/protocols/survey/../utils/fq.h: -nanosrc/protocols/survey/../utils/priolist.h: -nanosrc/protocols/survey/../../nn.h: -nanosrc/protocols/survey/../../nn_config.h: -nanosrc/protocols/survey/../../survey.h: -nanosrc/protocols/survey/../../utils/err.h: -nanosrc/protocols/survey/../../utils/fast.h: -nanosrc/protocols/survey/../../utils/cont.h: -nanosrc/protocols/survey/../../utils/alloc.h: -nanosrc/protocols/survey/../../utils/random.h: -nanosrc/protocols/survey/../../utils/wire.h: -nanosrc/protocols/survey/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/survey/xsurveyor.deps b/crypto777/pnacl/Release/nanosrc/protocols/survey/xsurveyor.deps deleted file mode 100644 index 0cf50415c..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/survey/xsurveyor.deps +++ /dev/null @@ -1,41 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/survey/xsurveyor.o: \ - nanosrc/protocols/survey/xsurveyor.c \ - nanosrc/protocols/survey/xsurveyor.h \ - nanosrc/protocols/survey/../../protocol.h \ - nanosrc/protocols/survey/../../utils/msg.h \ - nanosrc/protocols/survey/../../utils/chunkref.h \ - nanosrc/protocols/survey/../../utils/chunk.h \ - nanosrc/protocols/survey/../../utils/int.h \ - nanosrc/protocols/survey/../../utils/list.h \ - nanosrc/protocols/survey/../utils/dist.h \ - nanosrc/protocols/survey/../utils/fq.h \ - nanosrc/protocols/survey/../utils/priolist.h \ - nanosrc/protocols/survey/../../nn.h \ - nanosrc/protocols/survey/../../nn_config.h \ - nanosrc/protocols/survey/../../survey.h \ - nanosrc/protocols/survey/../../utils/err.h \ - nanosrc/protocols/survey/../../utils/fast.h \ - nanosrc/protocols/survey/../../utils/cont.h \ - nanosrc/protocols/survey/../../utils/alloc.h \ - nanosrc/protocols/survey/../../utils/attr.h -: -nanosrc/protocols/survey/xsurveyor.c: -nanosrc/protocols/survey/xsurveyor.h: -nanosrc/protocols/survey/../../protocol.h: -nanosrc/protocols/survey/../../utils/msg.h: -nanosrc/protocols/survey/../../utils/chunkref.h: -nanosrc/protocols/survey/../../utils/chunk.h: -nanosrc/protocols/survey/../../utils/int.h: -nanosrc/protocols/survey/../../utils/list.h: -nanosrc/protocols/survey/../utils/dist.h: -nanosrc/protocols/survey/../utils/fq.h: -nanosrc/protocols/survey/../utils/priolist.h: -nanosrc/protocols/survey/../../nn.h: -nanosrc/protocols/survey/../../nn_config.h: -nanosrc/protocols/survey/../../survey.h: -nanosrc/protocols/survey/../../utils/err.h: -nanosrc/protocols/survey/../../utils/fast.h: -nanosrc/protocols/survey/../../utils/cont.h: -nanosrc/protocols/survey/../../utils/alloc.h: -nanosrc/protocols/survey/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/utils/dir.stamp b/crypto777/pnacl/Release/nanosrc/protocols/utils/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/utils/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/protocols/utils/dist.deps b/crypto777/pnacl/Release/nanosrc/protocols/utils/dist.deps deleted file mode 100644 index 22e1a89b7..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/utils/dist.deps +++ /dev/null @@ -1,30 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/utils/dist.o: \ - nanosrc/protocols/utils/dist.c nanosrc/protocols/utils/dist.h \ - nanosrc/protocols/utils/../../protocol.h \ - nanosrc/protocols/utils/../../utils/msg.h \ - nanosrc/protocols/utils/../../utils/chunkref.h \ - nanosrc/protocols/utils/../../utils/chunk.h \ - nanosrc/protocols/utils/../../utils/int.h \ - nanosrc/protocols/utils/../../utils/list.h \ - nanosrc/protocols/utils/../../utils/err.h \ - nanosrc/protocols/utils/../../utils/../nn.h \ - nanosrc/protocols/utils/../../nn_config.h \ - nanosrc/protocols/utils/../../utils/fast.h \ - nanosrc/protocols/utils/../../utils/cont.h \ - nanosrc/protocols/utils/../../utils/attr.h -: -nanosrc/protocols/utils/dist.c: -nanosrc/protocols/utils/dist.h: -nanosrc/protocols/utils/../../protocol.h: -nanosrc/protocols/utils/../../utils/msg.h: -nanosrc/protocols/utils/../../utils/chunkref.h: -nanosrc/protocols/utils/../../utils/chunk.h: -nanosrc/protocols/utils/../../utils/int.h: -nanosrc/protocols/utils/../../utils/list.h: -nanosrc/protocols/utils/../../utils/err.h: -nanosrc/protocols/utils/../../utils/../nn.h: -nanosrc/protocols/utils/../../nn_config.h: -nanosrc/protocols/utils/../../utils/fast.h: -nanosrc/protocols/utils/../../utils/cont.h: -nanosrc/protocols/utils/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/utils/excl.deps b/crypto777/pnacl/Release/nanosrc/protocols/utils/excl.deps deleted file mode 100644 index 8b711854b..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/utils/excl.deps +++ /dev/null @@ -1,28 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/utils/excl.o: \ - nanosrc/protocols/utils/excl.c nanosrc/protocols/utils/excl.h \ - nanosrc/protocols/utils/../../protocol.h \ - nanosrc/protocols/utils/../../utils/msg.h \ - nanosrc/protocols/utils/../../utils/chunkref.h \ - nanosrc/protocols/utils/../../utils/chunk.h \ - nanosrc/protocols/utils/../../utils/int.h \ - nanosrc/protocols/utils/../../utils/list.h \ - nanosrc/protocols/utils/../../utils/fast.h \ - nanosrc/protocols/utils/../../utils/err.h \ - nanosrc/protocols/utils/../../utils/../nn.h \ - nanosrc/protocols/utils/../../nn_config.h \ - nanosrc/protocols/utils/../../utils/attr.h -: -nanosrc/protocols/utils/excl.c: -nanosrc/protocols/utils/excl.h: -nanosrc/protocols/utils/../../protocol.h: -nanosrc/protocols/utils/../../utils/msg.h: -nanosrc/protocols/utils/../../utils/chunkref.h: -nanosrc/protocols/utils/../../utils/chunk.h: -nanosrc/protocols/utils/../../utils/int.h: -nanosrc/protocols/utils/../../utils/list.h: -nanosrc/protocols/utils/../../utils/fast.h: -nanosrc/protocols/utils/../../utils/err.h: -nanosrc/protocols/utils/../../utils/../nn.h: -nanosrc/protocols/utils/../../nn_config.h: -nanosrc/protocols/utils/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/utils/fq.deps b/crypto777/pnacl/Release/nanosrc/protocols/utils/fq.deps deleted file mode 100644 index da9626f81..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/utils/fq.deps +++ /dev/null @@ -1,28 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/utils/fq.o: nanosrc/protocols/utils/fq.c \ - nanosrc/protocols/utils/fq.h nanosrc/protocols/utils/../../protocol.h \ - nanosrc/protocols/utils/../../utils/msg.h \ - nanosrc/protocols/utils/../../utils/chunkref.h \ - nanosrc/protocols/utils/../../utils/chunk.h \ - nanosrc/protocols/utils/../../utils/int.h \ - nanosrc/protocols/utils/../../utils/list.h \ - nanosrc/protocols/utils/priolist.h \ - nanosrc/protocols/utils/../../utils/err.h \ - nanosrc/protocols/utils/../../utils/../nn.h \ - nanosrc/protocols/utils/../../nn_config.h \ - nanosrc/protocols/utils/../../utils/fast.h \ - nanosrc/protocols/utils/../../utils/cont.h -nanosrc/protocols/utils/fq.c: -nanosrc/protocols/utils/fq.h: -nanosrc/protocols/utils/../../protocol.h: -nanosrc/protocols/utils/../../utils/msg.h: -nanosrc/protocols/utils/../../utils/chunkref.h: -nanosrc/protocols/utils/../../utils/chunk.h: -nanosrc/protocols/utils/../../utils/int.h: -nanosrc/protocols/utils/../../utils/list.h: -nanosrc/protocols/utils/priolist.h: -nanosrc/protocols/utils/../../utils/err.h: -nanosrc/protocols/utils/../../utils/../nn.h: -nanosrc/protocols/utils/../../nn_config.h: -nanosrc/protocols/utils/../../utils/fast.h: -nanosrc/protocols/utils/../../utils/cont.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/utils/lb.deps b/crypto777/pnacl/Release/nanosrc/protocols/utils/lb.deps deleted file mode 100644 index 4fe83829c..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/utils/lb.deps +++ /dev/null @@ -1,28 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/utils/lb.o: nanosrc/protocols/utils/lb.c \ - nanosrc/protocols/utils/lb.h nanosrc/protocols/utils/../../protocol.h \ - nanosrc/protocols/utils/../../utils/msg.h \ - nanosrc/protocols/utils/../../utils/chunkref.h \ - nanosrc/protocols/utils/../../utils/chunk.h \ - nanosrc/protocols/utils/../../utils/int.h \ - nanosrc/protocols/utils/../../utils/list.h \ - nanosrc/protocols/utils/priolist.h \ - nanosrc/protocols/utils/../../utils/err.h \ - nanosrc/protocols/utils/../../utils/../nn.h \ - nanosrc/protocols/utils/../../nn_config.h \ - nanosrc/protocols/utils/../../utils/fast.h \ - nanosrc/protocols/utils/../../utils/cont.h -nanosrc/protocols/utils/lb.c: -nanosrc/protocols/utils/lb.h: -nanosrc/protocols/utils/../../protocol.h: -nanosrc/protocols/utils/../../utils/msg.h: -nanosrc/protocols/utils/../../utils/chunkref.h: -nanosrc/protocols/utils/../../utils/chunk.h: -nanosrc/protocols/utils/../../utils/int.h: -nanosrc/protocols/utils/../../utils/list.h: -nanosrc/protocols/utils/priolist.h: -nanosrc/protocols/utils/../../utils/err.h: -nanosrc/protocols/utils/../../utils/../nn.h: -nanosrc/protocols/utils/../../nn_config.h: -nanosrc/protocols/utils/../../utils/fast.h: -nanosrc/protocols/utils/../../utils/cont.h: diff --git a/crypto777/pnacl/Release/nanosrc/protocols/utils/priolist.deps b/crypto777/pnacl/Release/nanosrc/protocols/utils/priolist.deps deleted file mode 100644 index f041c781c..000000000 --- a/crypto777/pnacl/Release/nanosrc/protocols/utils/priolist.deps +++ /dev/null @@ -1,30 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/protocols/utils/priolist.o: \ - nanosrc/protocols/utils/priolist.c nanosrc/protocols/utils/priolist.h \ - nanosrc/protocols/utils/../../protocol.h \ - nanosrc/protocols/utils/../../utils/msg.h \ - nanosrc/protocols/utils/../../utils/chunkref.h \ - nanosrc/protocols/utils/../../utils/chunk.h \ - nanosrc/protocols/utils/../../utils/int.h \ - nanosrc/protocols/utils/../../utils/list.h \ - nanosrc/protocols/utils/../../utils/cont.h \ - nanosrc/protocols/utils/../../utils/fast.h \ - nanosrc/protocols/utils/../../utils/err.h \ - nanosrc/protocols/utils/../../utils/../nn.h \ - nanosrc/protocols/utils/../../nn_config.h \ - nanosrc/protocols/utils/../../utils/attr.h -: -nanosrc/protocols/utils/priolist.c: -nanosrc/protocols/utils/priolist.h: -nanosrc/protocols/utils/../../protocol.h: -nanosrc/protocols/utils/../../utils/msg.h: -nanosrc/protocols/utils/../../utils/chunkref.h: -nanosrc/protocols/utils/../../utils/chunk.h: -nanosrc/protocols/utils/../../utils/int.h: -nanosrc/protocols/utils/../../utils/list.h: -nanosrc/protocols/utils/../../utils/cont.h: -nanosrc/protocols/utils/../../utils/fast.h: -nanosrc/protocols/utils/../../utils/err.h: -nanosrc/protocols/utils/../../utils/../nn.h: -nanosrc/protocols/utils/../../nn_config.h: -nanosrc/protocols/utils/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/tcp/atcp.deps b/crypto777/pnacl/Release/nanosrc/transports/tcp/atcp.deps deleted file mode 100644 index 7aa39540d..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/tcp/atcp.deps +++ /dev/null @@ -1,71 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/tcp/atcp.o: \ - nanosrc/transports/tcp/atcp.c nanosrc/transports/tcp/atcp.h \ - nanosrc/transports/tcp/stcp.h nanosrc/transports/tcp/../../transport.h \ - nanosrc/transports/tcp/../../nn.h \ - nanosrc/transports/tcp/../../nn_config.h \ - nanosrc/transports/tcp/../../aio/fsm.h \ - nanosrc/transports/tcp/../../aio/../utils/queue.h \ - nanosrc/transports/tcp/../../utils/list.h \ - nanosrc/transports/tcp/../../utils/msg.h \ - nanosrc/transports/tcp/../../aio/../utils/chunkref.h \ - nanosrc/transports/tcp/../../aio/../utils/chunk.h \ - nanosrc/transports/tcp/../../aio/../utils/int.h \ - nanosrc/transports/tcp/../../aio/usock.h \ - nanosrc/transports/tcp/../../aio/usock_posix.h \ - nanosrc/transports/tcp/../../aio/worker.h \ - nanosrc/transports/tcp/../../aio/timerset.h \ - nanosrc/transports/tcp/../../aio/../utils/clock.h \ - nanosrc/transports/tcp/../../aio/worker_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/mutex.h \ - nanosrc/transports/tcp/../../aio/../utils/thread.h \ - nanosrc/transports/tcp/../../aio/../utils/thread_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/efd.h \ - nanosrc/transports/tcp/../../aio/../utils/fd.h \ - nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h \ - nanosrc/transports/tcp/../../aio/poller.h \ - nanosrc/transports/tcp/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/transports/tcp/../utils/streamhdr.h \ - nanosrc/transports/tcp/../utils/../../aio/timer.h \ - nanosrc/transports/tcp/../../utils/err.h \ - nanosrc/transports/tcp/../../aio/../utils/fast.h \ - nanosrc/transports/tcp/../../utils/cont.h \ - nanosrc/transports/tcp/../../utils/attr.h -: -nanosrc/transports/tcp/atcp.c: -nanosrc/transports/tcp/atcp.h: -nanosrc/transports/tcp/stcp.h: -nanosrc/transports/tcp/../../transport.h: -nanosrc/transports/tcp/../../nn.h: -nanosrc/transports/tcp/../../nn_config.h: -nanosrc/transports/tcp/../../aio/fsm.h: -nanosrc/transports/tcp/../../aio/../utils/queue.h: -nanosrc/transports/tcp/../../utils/list.h: -nanosrc/transports/tcp/../../utils/msg.h: -nanosrc/transports/tcp/../../aio/../utils/chunkref.h: -nanosrc/transports/tcp/../../aio/../utils/chunk.h: -nanosrc/transports/tcp/../../aio/../utils/int.h: -nanosrc/transports/tcp/../../aio/usock.h: -nanosrc/transports/tcp/../../aio/usock_posix.h: -nanosrc/transports/tcp/../../aio/worker.h: -nanosrc/transports/tcp/../../aio/timerset.h: -nanosrc/transports/tcp/../../aio/../utils/clock.h: -nanosrc/transports/tcp/../../aio/worker_posix.h: -nanosrc/transports/tcp/../../aio/../utils/mutex.h: -nanosrc/transports/tcp/../../aio/../utils/thread.h: -nanosrc/transports/tcp/../../aio/../utils/thread_posix.h: -nanosrc/transports/tcp/../../aio/../utils/efd.h: -nanosrc/transports/tcp/../../aio/../utils/fd.h: -nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h: -nanosrc/transports/tcp/../../aio/poller.h: -nanosrc/transports/tcp/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/transports/tcp/../utils/streamhdr.h: -nanosrc/transports/tcp/../utils/../../aio/timer.h: -nanosrc/transports/tcp/../../utils/err.h: -nanosrc/transports/tcp/../../aio/../utils/fast.h: -nanosrc/transports/tcp/../../utils/cont.h: -nanosrc/transports/tcp/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/tcp/btcp.deps b/crypto777/pnacl/Release/nanosrc/transports/tcp/btcp.deps deleted file mode 100644 index 1acecc3fd..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/tcp/btcp.deps +++ /dev/null @@ -1,79 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/tcp/btcp.o: \ - nanosrc/transports/tcp/btcp.c nanosrc/transports/tcp/btcp.h \ - nanosrc/transports/tcp/../../transport.h \ - nanosrc/transports/tcp/../../nn.h \ - nanosrc/transports/tcp/../../nn_config.h \ - nanosrc/transports/tcp/../../aio/fsm.h \ - nanosrc/transports/tcp/../../aio/../utils/queue.h \ - nanosrc/transports/tcp/../../utils/list.h \ - nanosrc/transports/tcp/../../utils/msg.h \ - nanosrc/transports/tcp/../../aio/../utils/chunkref.h \ - nanosrc/transports/tcp/../../aio/../utils/chunk.h \ - nanosrc/transports/tcp/../../aio/../utils/int.h \ - nanosrc/transports/tcp/atcp.h nanosrc/transports/tcp/stcp.h \ - nanosrc/transports/tcp/../../aio/usock.h \ - nanosrc/transports/tcp/../../aio/usock_posix.h \ - nanosrc/transports/tcp/../../aio/worker.h \ - nanosrc/transports/tcp/../../aio/timerset.h \ - nanosrc/transports/tcp/../../aio/../utils/clock.h \ - nanosrc/transports/tcp/../../aio/worker_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/mutex.h \ - nanosrc/transports/tcp/../../aio/../utils/thread.h \ - nanosrc/transports/tcp/../../aio/../utils/thread_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/efd.h \ - nanosrc/transports/tcp/../../aio/../utils/fd.h \ - nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h \ - nanosrc/transports/tcp/../../aio/poller.h \ - nanosrc/transports/tcp/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/transports/tcp/../utils/streamhdr.h \ - nanosrc/transports/tcp/../utils/../../aio/timer.h \ - nanosrc/transports/tcp/../utils/port.h \ - nanosrc/transports/tcp/../utils/iface.h \ - nanosrc/transports/tcp/../utils/backoff.h \ - nanosrc/transports/tcp/../../utils/err.h \ - nanosrc/transports/tcp/../../aio/../utils/fast.h \ - nanosrc/transports/tcp/../../utils/cont.h \ - nanosrc/transports/tcp/../../utils/alloc.h -: -nanosrc/transports/tcp/btcp.c: -nanosrc/transports/tcp/btcp.h: -nanosrc/transports/tcp/../../transport.h: -nanosrc/transports/tcp/../../nn.h: -nanosrc/transports/tcp/../../nn_config.h: -nanosrc/transports/tcp/../../aio/fsm.h: -nanosrc/transports/tcp/../../aio/../utils/queue.h: -nanosrc/transports/tcp/../../utils/list.h: -nanosrc/transports/tcp/../../utils/msg.h: -nanosrc/transports/tcp/../../aio/../utils/chunkref.h: -nanosrc/transports/tcp/../../aio/../utils/chunk.h: -nanosrc/transports/tcp/../../aio/../utils/int.h: -nanosrc/transports/tcp/atcp.h: -nanosrc/transports/tcp/stcp.h: -nanosrc/transports/tcp/../../aio/usock.h: -nanosrc/transports/tcp/../../aio/usock_posix.h: -nanosrc/transports/tcp/../../aio/worker.h: -nanosrc/transports/tcp/../../aio/timerset.h: -nanosrc/transports/tcp/../../aio/../utils/clock.h: -nanosrc/transports/tcp/../../aio/worker_posix.h: -nanosrc/transports/tcp/../../aio/../utils/mutex.h: -nanosrc/transports/tcp/../../aio/../utils/thread.h: -nanosrc/transports/tcp/../../aio/../utils/thread_posix.h: -nanosrc/transports/tcp/../../aio/../utils/efd.h: -nanosrc/transports/tcp/../../aio/../utils/fd.h: -nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h: -nanosrc/transports/tcp/../../aio/poller.h: -nanosrc/transports/tcp/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/transports/tcp/../utils/streamhdr.h: -nanosrc/transports/tcp/../utils/../../aio/timer.h: -nanosrc/transports/tcp/../utils/port.h: -nanosrc/transports/tcp/../utils/iface.h: -nanosrc/transports/tcp/../utils/backoff.h: -nanosrc/transports/tcp/../../utils/err.h: -nanosrc/transports/tcp/../../aio/../utils/fast.h: -nanosrc/transports/tcp/../../utils/cont.h: -nanosrc/transports/tcp/../../utils/alloc.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/tcp/ctcp.deps b/crypto777/pnacl/Release/nanosrc/transports/tcp/ctcp.deps deleted file mode 100644 index e8ed63df9..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/tcp/ctcp.deps +++ /dev/null @@ -1,89 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/tcp/ctcp.o: \ - nanosrc/transports/tcp/ctcp.c nanosrc/transports/tcp/ctcp.h \ - nanosrc/transports/tcp/../../transport.h \ - nanosrc/transports/tcp/../../nn.h \ - nanosrc/transports/tcp/../../nn_config.h \ - nanosrc/transports/tcp/../../aio/fsm.h \ - nanosrc/transports/tcp/../../aio/../utils/queue.h \ - nanosrc/transports/tcp/../../utils/list.h \ - nanosrc/transports/tcp/../../utils/msg.h \ - nanosrc/transports/tcp/../../aio/../utils/chunkref.h \ - nanosrc/transports/tcp/../../aio/../utils/chunk.h \ - nanosrc/transports/tcp/../../aio/../utils/int.h \ - nanosrc/transports/tcp/stcp.h nanosrc/transports/tcp/../../aio/usock.h \ - nanosrc/transports/tcp/../../aio/usock_posix.h \ - nanosrc/transports/tcp/../../aio/worker.h \ - nanosrc/transports/tcp/../../aio/timerset.h \ - nanosrc/transports/tcp/../../aio/../utils/clock.h \ - nanosrc/transports/tcp/../../aio/worker_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/mutex.h \ - nanosrc/transports/tcp/../../aio/../utils/thread.h \ - nanosrc/transports/tcp/../../aio/../utils/thread_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/efd.h \ - nanosrc/transports/tcp/../../aio/../utils/fd.h \ - nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h \ - nanosrc/transports/tcp/../../aio/poller.h \ - nanosrc/transports/tcp/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/transports/tcp/../utils/streamhdr.h \ - nanosrc/transports/tcp/../utils/../../aio/timer.h \ - nanosrc/transports/tcp/../../tcp.h \ - nanosrc/transports/tcp/../utils/dns.h \ - nanosrc/transports/tcp/../utils/dns_getaddrinfo.h \ - nanosrc/transports/tcp/../utils/port.h \ - nanosrc/transports/tcp/../utils/iface.h \ - nanosrc/transports/tcp/../utils/backoff.h \ - nanosrc/transports/tcp/../utils/literal.h \ - nanosrc/transports/tcp/../../utils/err.h \ - nanosrc/transports/tcp/../../aio/../utils/fast.h \ - nanosrc/transports/tcp/../../utils/cont.h \ - nanosrc/transports/tcp/../../utils/alloc.h \ - nanosrc/transports/tcp/../../utils/attr.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/tcp.h -: -nanosrc/transports/tcp/ctcp.c: -nanosrc/transports/tcp/ctcp.h: -nanosrc/transports/tcp/../../transport.h: -nanosrc/transports/tcp/../../nn.h: -nanosrc/transports/tcp/../../nn_config.h: -nanosrc/transports/tcp/../../aio/fsm.h: -nanosrc/transports/tcp/../../aio/../utils/queue.h: -nanosrc/transports/tcp/../../utils/list.h: -nanosrc/transports/tcp/../../utils/msg.h: -nanosrc/transports/tcp/../../aio/../utils/chunkref.h: -nanosrc/transports/tcp/../../aio/../utils/chunk.h: -nanosrc/transports/tcp/../../aio/../utils/int.h: -nanosrc/transports/tcp/stcp.h: -nanosrc/transports/tcp/../../aio/usock.h: -nanosrc/transports/tcp/../../aio/usock_posix.h: -nanosrc/transports/tcp/../../aio/worker.h: -nanosrc/transports/tcp/../../aio/timerset.h: -nanosrc/transports/tcp/../../aio/../utils/clock.h: -nanosrc/transports/tcp/../../aio/worker_posix.h: -nanosrc/transports/tcp/../../aio/../utils/mutex.h: -nanosrc/transports/tcp/../../aio/../utils/thread.h: -nanosrc/transports/tcp/../../aio/../utils/thread_posix.h: -nanosrc/transports/tcp/../../aio/../utils/efd.h: -nanosrc/transports/tcp/../../aio/../utils/fd.h: -nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h: -nanosrc/transports/tcp/../../aio/poller.h: -nanosrc/transports/tcp/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/transports/tcp/../utils/streamhdr.h: -nanosrc/transports/tcp/../utils/../../aio/timer.h: -nanosrc/transports/tcp/../../tcp.h: -nanosrc/transports/tcp/../utils/dns.h: -nanosrc/transports/tcp/../utils/dns_getaddrinfo.h: -nanosrc/transports/tcp/../utils/port.h: -nanosrc/transports/tcp/../utils/iface.h: -nanosrc/transports/tcp/../utils/backoff.h: -nanosrc/transports/tcp/../utils/literal.h: -nanosrc/transports/tcp/../../utils/err.h: -nanosrc/transports/tcp/../../aio/../utils/fast.h: -nanosrc/transports/tcp/../../utils/cont.h: -nanosrc/transports/tcp/../../utils/alloc.h: -nanosrc/transports/tcp/../../utils/attr.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/tcp.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/tcp/dir.stamp b/crypto777/pnacl/Release/nanosrc/transports/tcp/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/tcp/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/transports/tcp/stcp.deps b/crypto777/pnacl/Release/nanosrc/transports/tcp/stcp.deps deleted file mode 100644 index a89754481..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/tcp/stcp.deps +++ /dev/null @@ -1,72 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/tcp/stcp.o: \ - nanosrc/transports/tcp/stcp.c nanosrc/transports/tcp/stcp.h \ - nanosrc/transports/tcp/../../transport.h \ - nanosrc/transports/tcp/../../nn.h \ - nanosrc/transports/tcp/../../nn_config.h \ - nanosrc/transports/tcp/../../aio/fsm.h \ - nanosrc/transports/tcp/../../aio/../utils/queue.h \ - nanosrc/transports/tcp/../../utils/list.h \ - nanosrc/transports/tcp/../../utils/msg.h \ - nanosrc/transports/tcp/../../aio/../utils/chunkref.h \ - nanosrc/transports/tcp/../../aio/../utils/chunk.h \ - nanosrc/transports/tcp/../../aio/../utils/int.h \ - nanosrc/transports/tcp/../../aio/usock.h \ - nanosrc/transports/tcp/../../aio/usock_posix.h \ - nanosrc/transports/tcp/../../aio/worker.h \ - nanosrc/transports/tcp/../../aio/timerset.h \ - nanosrc/transports/tcp/../../aio/../utils/clock.h \ - nanosrc/transports/tcp/../../aio/worker_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/mutex.h \ - nanosrc/transports/tcp/../../aio/../utils/thread.h \ - nanosrc/transports/tcp/../../aio/../utils/thread_posix.h \ - nanosrc/transports/tcp/../../aio/../utils/efd.h \ - nanosrc/transports/tcp/../../aio/../utils/fd.h \ - nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h \ - nanosrc/transports/tcp/../../aio/poller.h \ - nanosrc/transports/tcp/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/transports/tcp/../utils/streamhdr.h \ - nanosrc/transports/tcp/../utils/../../aio/timer.h \ - nanosrc/transports/tcp/../../utils/err.h \ - nanosrc/transports/tcp/../../aio/../utils/fast.h \ - nanosrc/transports/tcp/../../utils/cont.h \ - nanosrc/transports/tcp/../../utils/wire.h \ - nanosrc/transports/tcp/../../utils/attr.h -: -nanosrc/transports/tcp/stcp.c: -nanosrc/transports/tcp/stcp.h: -nanosrc/transports/tcp/../../transport.h: -nanosrc/transports/tcp/../../nn.h: -nanosrc/transports/tcp/../../nn_config.h: -nanosrc/transports/tcp/../../aio/fsm.h: -nanosrc/transports/tcp/../../aio/../utils/queue.h: -nanosrc/transports/tcp/../../utils/list.h: -nanosrc/transports/tcp/../../utils/msg.h: -nanosrc/transports/tcp/../../aio/../utils/chunkref.h: -nanosrc/transports/tcp/../../aio/../utils/chunk.h: -nanosrc/transports/tcp/../../aio/../utils/int.h: -nanosrc/transports/tcp/../../aio/usock.h: -nanosrc/transports/tcp/../../aio/usock_posix.h: -nanosrc/transports/tcp/../../aio/worker.h: -nanosrc/transports/tcp/../../aio/timerset.h: -nanosrc/transports/tcp/../../aio/../utils/clock.h: -nanosrc/transports/tcp/../../aio/worker_posix.h: -nanosrc/transports/tcp/../../aio/../utils/mutex.h: -nanosrc/transports/tcp/../../aio/../utils/thread.h: -nanosrc/transports/tcp/../../aio/../utils/thread_posix.h: -nanosrc/transports/tcp/../../aio/../utils/efd.h: -nanosrc/transports/tcp/../../aio/../utils/fd.h: -nanosrc/transports/tcp/../../aio/../utils/efd_pipe.h: -nanosrc/transports/tcp/../../aio/poller.h: -nanosrc/transports/tcp/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/transports/tcp/../utils/streamhdr.h: -nanosrc/transports/tcp/../utils/../../aio/timer.h: -nanosrc/transports/tcp/../../utils/err.h: -nanosrc/transports/tcp/../../aio/../utils/fast.h: -nanosrc/transports/tcp/../../utils/cont.h: -nanosrc/transports/tcp/../../utils/wire.h: -nanosrc/transports/tcp/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/tcp/tcp.deps b/crypto777/pnacl/Release/nanosrc/transports/tcp/tcp.deps deleted file mode 100644 index 5a553049e..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/tcp/tcp.deps +++ /dev/null @@ -1,41 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/tcp/tcp.o: nanosrc/transports/tcp/tcp.c \ - nanosrc/transports/tcp/tcp.h nanosrc/transports/tcp/../../transport.h \ - nanosrc/transports/tcp/../../nn.h \ - nanosrc/transports/tcp/../../nn_config.h \ - nanosrc/transports/tcp/../../aio/fsm.h \ - nanosrc/transports/tcp/../../aio/../utils/queue.h \ - nanosrc/transports/tcp/../../utils/list.h \ - nanosrc/transports/tcp/../../utils/msg.h \ - nanosrc/transports/tcp/../../aio/../utils/chunkref.h \ - nanosrc/transports/tcp/../../aio/../utils/chunk.h \ - nanosrc/transports/tcp/../../aio/../utils/int.h \ - nanosrc/transports/tcp/btcp.h nanosrc/transports/tcp/ctcp.h \ - nanosrc/transports/tcp/../../tcp.h \ - nanosrc/transports/tcp/../utils/port.h \ - nanosrc/transports/tcp/../utils/iface.h \ - nanosrc/transports/tcp/../../utils/err.h \ - nanosrc/transports/tcp/../../aio/../utils/fast.h \ - nanosrc/transports/tcp/../../utils/alloc.h \ - nanosrc/transports/tcp/../../utils/cont.h -nanosrc/transports/tcp/tcp.c: -nanosrc/transports/tcp/tcp.h: -nanosrc/transports/tcp/../../transport.h: -nanosrc/transports/tcp/../../nn.h: -nanosrc/transports/tcp/../../nn_config.h: -nanosrc/transports/tcp/../../aio/fsm.h: -nanosrc/transports/tcp/../../aio/../utils/queue.h: -nanosrc/transports/tcp/../../utils/list.h: -nanosrc/transports/tcp/../../utils/msg.h: -nanosrc/transports/tcp/../../aio/../utils/chunkref.h: -nanosrc/transports/tcp/../../aio/../utils/chunk.h: -nanosrc/transports/tcp/../../aio/../utils/int.h: -nanosrc/transports/tcp/btcp.h: -nanosrc/transports/tcp/ctcp.h: -nanosrc/transports/tcp/../../tcp.h: -nanosrc/transports/tcp/../utils/port.h: -nanosrc/transports/tcp/../utils/iface.h: -nanosrc/transports/tcp/../../utils/err.h: -nanosrc/transports/tcp/../../aio/../utils/fast.h: -nanosrc/transports/tcp/../../utils/alloc.h: -nanosrc/transports/tcp/../../utils/cont.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/backoff.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/backoff.deps deleted file mode 100644 index 434758f2a..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/backoff.deps +++ /dev/null @@ -1,46 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/backoff.o: \ - nanosrc/transports/utils/backoff.c nanosrc/transports/utils/backoff.h \ - nanosrc/transports/utils/../../aio/timer.h \ - nanosrc/transports/utils/../../aio/fsm.h \ - nanosrc/transports/utils/../../aio/../utils/queue.h \ - nanosrc/transports/utils/../../aio/worker.h \ - nanosrc/transports/utils/../../aio/timerset.h \ - nanosrc/transports/utils/../../aio/../utils/clock.h \ - nanosrc/transports/utils/../../aio/../utils/int.h \ - nanosrc/transports/utils/../../aio/../utils/list.h \ - nanosrc/transports/utils/../../aio/worker_posix.h \ - nanosrc/transports/utils/../../aio/../utils/mutex.h \ - nanosrc/transports/utils/../../aio/../utils/thread.h \ - nanosrc/transports/utils/../../aio/../utils/thread_posix.h \ - nanosrc/transports/utils/../../aio/../utils/efd.h \ - nanosrc/transports/utils/../../aio/../utils/../nn_config.h \ - nanosrc/transports/utils/../../aio/../utils/fd.h \ - nanosrc/transports/utils/../../aio/../utils/efd_pipe.h \ - nanosrc/transports/utils/../../aio/poller.h \ - nanosrc/transports/utils/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h -: -nanosrc/transports/utils/backoff.c: -nanosrc/transports/utils/backoff.h: -nanosrc/transports/utils/../../aio/timer.h: -nanosrc/transports/utils/../../aio/fsm.h: -nanosrc/transports/utils/../../aio/../utils/queue.h: -nanosrc/transports/utils/../../aio/worker.h: -nanosrc/transports/utils/../../aio/timerset.h: -nanosrc/transports/utils/../../aio/../utils/clock.h: -nanosrc/transports/utils/../../aio/../utils/int.h: -nanosrc/transports/utils/../../aio/../utils/list.h: -nanosrc/transports/utils/../../aio/worker_posix.h: -nanosrc/transports/utils/../../aio/../utils/mutex.h: -nanosrc/transports/utils/../../aio/../utils/thread.h: -nanosrc/transports/utils/../../aio/../utils/thread_posix.h: -nanosrc/transports/utils/../../aio/../utils/efd.h: -nanosrc/transports/utils/../../aio/../utils/../nn_config.h: -nanosrc/transports/utils/../../aio/../utils/fd.h: -nanosrc/transports/utils/../../aio/../utils/efd_pipe.h: -nanosrc/transports/utils/../../aio/poller.h: -nanosrc/transports/utils/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/base64.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/base64.deps deleted file mode 100644 index 1ba932ec4..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/base64.deps +++ /dev/null @@ -1,16 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/base64.o: \ - nanosrc/transports/utils/base64.c nanosrc/transports/utils/base64.h \ - nanosrc/transports/utils/../../utils/int.h \ - nanosrc/transports/utils/../../utils/err.h \ - nanosrc/transports/utils/../../utils/../nn.h \ - nanosrc/transports/utils/../../utils/../nn_config.h \ - nanosrc/transports/utils/../../utils/fast.h -: -nanosrc/transports/utils/base64.c: -nanosrc/transports/utils/base64.h: -nanosrc/transports/utils/../../utils/int.h: -nanosrc/transports/utils/../../utils/err.h: -nanosrc/transports/utils/../../utils/../nn.h: -nanosrc/transports/utils/../../utils/../nn_config.h: -nanosrc/transports/utils/../../utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/dir.stamp b/crypto777/pnacl/Release/nanosrc/transports/utils/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/dns.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/dns.deps deleted file mode 100644 index 28d0948ac..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/dns.deps +++ /dev/null @@ -1,34 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/dns.o: \ - nanosrc/transports/utils/dns.c nanosrc/transports/utils/dns.h \ - nanosrc/transports/utils/../../aio/fsm.h \ - nanosrc/transports/utils/../../aio/../utils/queue.h \ - nanosrc/transports/utils/dns_getaddrinfo.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - nanosrc/transports/utils/../../utils/err.h \ - nanosrc/transports/utils/../../aio/../utils/../nn.h \ - nanosrc/transports/utils/../../aio/../utils/../nn_config.h \ - nanosrc/transports/utils/../../aio/../utils/fast.h \ - nanosrc/transports/utils/dns_getaddrinfo.c \ - nanosrc/transports/utils/literal.h \ - nanosrc/transports/utils/../../utils/cont.h -: -nanosrc/transports/utils/dns.c: -nanosrc/transports/utils/dns.h: -nanosrc/transports/utils/../../aio/fsm.h: -nanosrc/transports/utils/../../aio/../utils/queue.h: -nanosrc/transports/utils/dns_getaddrinfo.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -nanosrc/transports/utils/../../utils/err.h: -nanosrc/transports/utils/../../aio/../utils/../nn.h: -nanosrc/transports/utils/../../aio/../utils/../nn_config.h: -nanosrc/transports/utils/../../aio/../utils/fast.h: -nanosrc/transports/utils/dns_getaddrinfo.c: -nanosrc/transports/utils/literal.h: -nanosrc/transports/utils/../../utils/cont.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/iface.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/iface.deps deleted file mode 100644 index af51b57d3..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/iface.deps +++ /dev/null @@ -1,26 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/iface.o: \ - nanosrc/transports/utils/iface.c nanosrc/transports/utils/iface.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - nanosrc/transports/utils/literal.h \ - nanosrc/transports/utils/../../utils/err.h \ - nanosrc/transports/utils/../../utils/../nn.h \ - nanosrc/transports/utils/../../utils/../nn_config.h \ - nanosrc/transports/utils/../../utils/fast.h \ - nanosrc/transports/utils/../../utils/closefd.h -: -nanosrc/transports/utils/iface.c: -nanosrc/transports/utils/iface.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -nanosrc/transports/utils/literal.h: -nanosrc/transports/utils/../../utils/err.h: -nanosrc/transports/utils/../../utils/../nn.h: -nanosrc/transports/utils/../../utils/../nn_config.h: -nanosrc/transports/utils/../../utils/fast.h: -nanosrc/transports/utils/../../utils/closefd.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/literal.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/literal.deps deleted file mode 100644 index 2ffa146af..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/literal.deps +++ /dev/null @@ -1,24 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/literal.o: \ - nanosrc/transports/utils/literal.c nanosrc/transports/utils/literal.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ - nanosrc/transports/utils/../../utils/err.h \ - nanosrc/transports/utils/../../utils/../nn.h \ - nanosrc/transports/utils/../../utils/../nn_config.h \ - nanosrc/transports/utils/../../utils/fast.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/arpa/inet.h -: -nanosrc/transports/utils/literal.c: -nanosrc/transports/utils/literal.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: -nanosrc/transports/utils/../../utils/err.h: -nanosrc/transports/utils/../../utils/../nn.h: -nanosrc/transports/utils/../../utils/../nn_config.h: -nanosrc/transports/utils/../../utils/fast.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/arpa/inet.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/port.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/port.deps deleted file mode 100644 index 3ccabce38..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/port.deps +++ /dev/null @@ -1,14 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/port.o: \ - nanosrc/transports/utils/port.c nanosrc/transports/utils/port.h \ - nanosrc/transports/utils/../../utils/err.h \ - nanosrc/transports/utils/../../utils/../nn.h \ - nanosrc/transports/utils/../../utils/../nn_config.h \ - nanosrc/transports/utils/../../utils/fast.h -: -nanosrc/transports/utils/port.c: -nanosrc/transports/utils/port.h: -nanosrc/transports/utils/../../utils/err.h: -nanosrc/transports/utils/../../utils/../nn.h: -nanosrc/transports/utils/../../utils/../nn_config.h: -nanosrc/transports/utils/../../utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/transports/utils/streamhdr.deps b/crypto777/pnacl/Release/nanosrc/transports/utils/streamhdr.deps deleted file mode 100644 index b0ae13609..000000000 --- a/crypto777/pnacl/Release/nanosrc/transports/utils/streamhdr.deps +++ /dev/null @@ -1,71 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/transports/utils/streamhdr.o: \ - nanosrc/transports/utils/streamhdr.c \ - nanosrc/transports/utils/streamhdr.h \ - nanosrc/transports/utils/../../transport.h \ - nanosrc/transports/utils/../../nn.h \ - nanosrc/transports/utils/../../nn_config.h \ - nanosrc/transports/utils/../../aio/fsm.h \ - nanosrc/transports/utils/../../aio/../utils/queue.h \ - nanosrc/transports/utils/../../utils/list.h \ - nanosrc/transports/utils/../../utils/msg.h \ - nanosrc/transports/utils/../../aio/../utils/chunkref.h \ - nanosrc/transports/utils/../../aio/../utils/chunk.h \ - nanosrc/transports/utils/../../aio/../utils/int.h \ - nanosrc/transports/utils/../../aio/usock.h \ - nanosrc/transports/utils/../../aio/usock_posix.h \ - nanosrc/transports/utils/../../aio/worker.h \ - nanosrc/transports/utils/../../aio/timerset.h \ - nanosrc/transports/utils/../../aio/../utils/clock.h \ - nanosrc/transports/utils/../../aio/worker_posix.h \ - nanosrc/transports/utils/../../aio/../utils/mutex.h \ - nanosrc/transports/utils/../../aio/../utils/thread.h \ - nanosrc/transports/utils/../../aio/../utils/thread_posix.h \ - nanosrc/transports/utils/../../aio/../utils/efd.h \ - nanosrc/transports/utils/../../aio/../utils/fd.h \ - nanosrc/transports/utils/../../aio/../utils/efd_pipe.h \ - nanosrc/transports/utils/../../aio/poller.h \ - nanosrc/transports/utils/../../aio/poller_poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ - nanosrc/transports/utils/../../aio/timer.h \ - nanosrc/transports/utils/../../utils/err.h \ - nanosrc/transports/utils/../../aio/../utils/fast.h \ - nanosrc/transports/utils/../../utils/cont.h \ - nanosrc/transports/utils/../../utils/wire.h \ - nanosrc/transports/utils/../../utils/attr.h -: -nanosrc/transports/utils/streamhdr.c: -nanosrc/transports/utils/streamhdr.h: -nanosrc/transports/utils/../../transport.h: -nanosrc/transports/utils/../../nn.h: -nanosrc/transports/utils/../../nn_config.h: -nanosrc/transports/utils/../../aio/fsm.h: -nanosrc/transports/utils/../../aio/../utils/queue.h: -nanosrc/transports/utils/../../utils/list.h: -nanosrc/transports/utils/../../utils/msg.h: -nanosrc/transports/utils/../../aio/../utils/chunkref.h: -nanosrc/transports/utils/../../aio/../utils/chunk.h: -nanosrc/transports/utils/../../aio/../utils/int.h: -nanosrc/transports/utils/../../aio/usock.h: -nanosrc/transports/utils/../../aio/usock_posix.h: -nanosrc/transports/utils/../../aio/worker.h: -nanosrc/transports/utils/../../aio/timerset.h: -nanosrc/transports/utils/../../aio/../utils/clock.h: -nanosrc/transports/utils/../../aio/worker_posix.h: -nanosrc/transports/utils/../../aio/../utils/mutex.h: -nanosrc/transports/utils/../../aio/../utils/thread.h: -nanosrc/transports/utils/../../aio/../utils/thread_posix.h: -nanosrc/transports/utils/../../aio/../utils/efd.h: -nanosrc/transports/utils/../../aio/../utils/fd.h: -nanosrc/transports/utils/../../aio/../utils/efd_pipe.h: -nanosrc/transports/utils/../../aio/poller.h: -nanosrc/transports/utils/../../aio/poller_poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: -nanosrc/transports/utils/../../aio/timer.h: -nanosrc/transports/utils/../../utils/err.h: -nanosrc/transports/utils/../../aio/../utils/fast.h: -nanosrc/transports/utils/../../utils/cont.h: -nanosrc/transports/utils/../../utils/wire.h: -nanosrc/transports/utils/../../utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/alloc.deps b/crypto777/pnacl/Release/nanosrc/utils/alloc.deps deleted file mode 100644 index 280c37a90..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/alloc.deps +++ /dev/null @@ -1,5 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/alloc.o: nanosrc/utils/alloc.c \ - nanosrc/utils/alloc.h -nanosrc/utils/alloc.c: -nanosrc/utils/alloc.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/atomic.deps b/crypto777/pnacl/Release/nanosrc/utils/atomic.deps deleted file mode 100644 index 3c228770d..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/atomic.deps +++ /dev/null @@ -1,13 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/atomic.o: nanosrc/utils/atomic.c \ - nanosrc/utils/atomic.h nanosrc/utils/mutex.h nanosrc/utils/int.h \ - nanosrc/utils/err.h nanosrc/utils/../nn.h nanosrc/utils/../nn_config.h \ - nanosrc/utils/fast.h -nanosrc/utils/atomic.c: -nanosrc/utils/atomic.h: -nanosrc/utils/mutex.h: -nanosrc/utils/int.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/chunk.deps b/crypto777/pnacl/Release/nanosrc/utils/chunk.deps deleted file mode 100644 index de6e36b8d..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/chunk.deps +++ /dev/null @@ -1,17 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/chunk.o: nanosrc/utils/chunk.c \ - nanosrc/utils/chunk.h nanosrc/utils/int.h nanosrc/utils/atomic.h \ - nanosrc/utils/mutex.h nanosrc/utils/alloc.h nanosrc/utils/fast.h \ - nanosrc/utils/wire.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h -nanosrc/utils/chunk.c: -nanosrc/utils/chunk.h: -nanosrc/utils/int.h: -nanosrc/utils/atomic.h: -nanosrc/utils/mutex.h: -nanosrc/utils/alloc.h: -nanosrc/utils/fast.h: -nanosrc/utils/wire.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/chunkref.deps b/crypto777/pnacl/Release/nanosrc/utils/chunkref.deps deleted file mode 100644 index 0f6a4e38e..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/chunkref.deps +++ /dev/null @@ -1,13 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/chunkref.o: nanosrc/utils/chunkref.c \ - nanosrc/utils/chunkref.h nanosrc/utils/chunk.h nanosrc/utils/int.h \ - nanosrc/utils/err.h nanosrc/utils/../nn.h nanosrc/utils/../nn_config.h \ - nanosrc/utils/fast.h -nanosrc/utils/chunkref.c: -nanosrc/utils/chunkref.h: -nanosrc/utils/chunk.h: -nanosrc/utils/int.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/clock.deps b/crypto777/pnacl/Release/nanosrc/utils/clock.deps deleted file mode 100644 index 90ab5d09a..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/clock.deps +++ /dev/null @@ -1,15 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/clock.o: nanosrc/utils/clock.c \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ - nanosrc/utils/clock.h nanosrc/utils/int.h nanosrc/utils/fast.h \ - nanosrc/utils/err.h nanosrc/utils/../nn.h nanosrc/utils/../nn_config.h \ - nanosrc/utils/attr.h -nanosrc/utils/clock.c: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: -nanosrc/utils/clock.h: -nanosrc/utils/int.h: -nanosrc/utils/fast.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/closefd.deps b/crypto777/pnacl/Release/nanosrc/utils/closefd.deps deleted file mode 100644 index 214cb3aae..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/closefd.deps +++ /dev/null @@ -1,10 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/closefd.o: nanosrc/utils/closefd.c \ - nanosrc/utils/closefd.h nanosrc/utils/fast.h nanosrc/utils/err.h \ - nanosrc/utils/../nn.h nanosrc/utils/../nn_config.h -nanosrc/utils/closefd.c: -nanosrc/utils/closefd.h: -nanosrc/utils/fast.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/dir.stamp b/crypto777/pnacl/Release/nanosrc/utils/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/crypto777/pnacl/Release/nanosrc/utils/efd.deps b/crypto777/pnacl/Release/nanosrc/utils/efd.deps deleted file mode 100644 index 2a465d77d..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/efd.deps +++ /dev/null @@ -1,21 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/efd.o: nanosrc/utils/efd.c \ - nanosrc/utils/efd.h nanosrc/utils/../nn_config.h nanosrc/utils/fd.h \ - nanosrc/utils/efd_pipe.h nanosrc/utils/efd_pipe.c nanosrc/utils/err.h \ - nanosrc/utils/../nn.h nanosrc/utils/fast.h nanosrc/utils/int.h \ - nanosrc/utils/closefd.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h -nanosrc/utils/efd.c: -nanosrc/utils/efd.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fd.h: -nanosrc/utils/efd_pipe.h: -nanosrc/utils/efd_pipe.c: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/fast.h: -nanosrc/utils/int.h: -nanosrc/utils/closefd.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/err.deps b/crypto777/pnacl/Release/nanosrc/utils/err.deps deleted file mode 100644 index b2c803cf3..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/err.deps +++ /dev/null @@ -1,9 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/err.o: nanosrc/utils/err.c \ - nanosrc/utils/err.h nanosrc/utils/../nn.h nanosrc/utils/../nn_config.h \ - nanosrc/utils/fast.h -nanosrc/utils/err.c: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/glock.deps b/crypto777/pnacl/Release/nanosrc/utils/glock.deps deleted file mode 100644 index 7cf11a285..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/glock.deps +++ /dev/null @@ -1,10 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/glock.o: nanosrc/utils/glock.c \ - nanosrc/utils/glock.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h -nanosrc/utils/glock.c: -nanosrc/utils/glock.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/hash.deps b/crypto777/pnacl/Release/nanosrc/utils/hash.deps deleted file mode 100644 index 7c0bb6905..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/hash.deps +++ /dev/null @@ -1,15 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/hash.o: nanosrc/utils/hash.c \ - nanosrc/utils/hash.h nanosrc/utils/list.h nanosrc/utils/int.h \ - nanosrc/utils/fast.h nanosrc/utils/alloc.h nanosrc/utils/cont.h \ - nanosrc/utils/err.h nanosrc/utils/../nn.h nanosrc/utils/../nn_config.h -nanosrc/utils/hash.c: -nanosrc/utils/hash.h: -nanosrc/utils/list.h: -nanosrc/utils/int.h: -nanosrc/utils/fast.h: -nanosrc/utils/alloc.h: -nanosrc/utils/cont.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/list.deps b/crypto777/pnacl/Release/nanosrc/utils/list.deps deleted file mode 100644 index 341e5d133..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/list.deps +++ /dev/null @@ -1,11 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/list.o: nanosrc/utils/list.c \ - nanosrc/utils/list.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h nanosrc/utils/attr.h -nanosrc/utils/list.c: -nanosrc/utils/list.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: -nanosrc/utils/attr.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/msg.deps b/crypto777/pnacl/Release/nanosrc/utils/msg.deps deleted file mode 100644 index af4226cc9..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/msg.deps +++ /dev/null @@ -1,9 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/msg.o: nanosrc/utils/msg.c \ - nanosrc/utils/msg.h nanosrc/utils/chunkref.h nanosrc/utils/chunk.h \ - nanosrc/utils/int.h -nanosrc/utils/msg.c: -nanosrc/utils/msg.h: -nanosrc/utils/chunkref.h: -nanosrc/utils/chunk.h: -nanosrc/utils/int.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/mutex.deps b/crypto777/pnacl/Release/nanosrc/utils/mutex.deps deleted file mode 100644 index 369c8958f..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/mutex.deps +++ /dev/null @@ -1,10 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/mutex.o: nanosrc/utils/mutex.c \ - nanosrc/utils/mutex.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h -nanosrc/utils/mutex.c: -nanosrc/utils/mutex.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/queue.deps b/crypto777/pnacl/Release/nanosrc/utils/queue.deps deleted file mode 100644 index 510afae1a..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/queue.deps +++ /dev/null @@ -1,10 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/queue.o: nanosrc/utils/queue.c \ - nanosrc/utils/queue.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h -nanosrc/utils/queue.c: -nanosrc/utils/queue.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/random.deps b/crypto777/pnacl/Release/nanosrc/utils/random.deps deleted file mode 100644 index 2271ef456..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/random.deps +++ /dev/null @@ -1,9 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/random.o: nanosrc/utils/random.c \ - nanosrc/utils/random.h nanosrc/utils/clock.h nanosrc/utils/int.h \ - nanosrc/utils/fast.h -nanosrc/utils/random.c: -nanosrc/utils/random.h: -nanosrc/utils/clock.h: -nanosrc/utils/int.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/sem.deps b/crypto777/pnacl/Release/nanosrc/utils/sem.deps deleted file mode 100644 index df339e6e8..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/sem.deps +++ /dev/null @@ -1,10 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/sem.o: nanosrc/utils/sem.c \ - nanosrc/utils/sem.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h -nanosrc/utils/sem.c: -nanosrc/utils/sem.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/sleep.deps b/crypto777/pnacl/Release/nanosrc/utils/sleep.deps deleted file mode 100644 index f40b77fbb..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/sleep.deps +++ /dev/null @@ -1,10 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/sleep.o: nanosrc/utils/sleep.c \ - nanosrc/utils/sleep.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h -nanosrc/utils/sleep.c: -nanosrc/utils/sleep.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/stopwatch.deps b/crypto777/pnacl/Release/nanosrc/utils/stopwatch.deps deleted file mode 100644 index 2f5d9e899..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/stopwatch.deps +++ /dev/null @@ -1,13 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/stopwatch.o: nanosrc/utils/stopwatch.c \ - nanosrc/utils/stopwatch.h nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h nanosrc/utils/int.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h -nanosrc/utils/stopwatch.c: -nanosrc/utils/stopwatch.h: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: -nanosrc/utils/int.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/thread.deps b/crypto777/pnacl/Release/nanosrc/utils/thread.deps deleted file mode 100644 index 192e5311f..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/thread.deps +++ /dev/null @@ -1,13 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/thread.o: nanosrc/utils/thread.c \ - nanosrc/utils/thread.h nanosrc/utils/thread_posix.h \ - nanosrc/utils/thread_posix.c nanosrc/utils/err.h nanosrc/utils/../nn.h \ - nanosrc/utils/../nn_config.h nanosrc/utils/fast.h -nanosrc/utils/thread.c: -nanosrc/utils/thread.h: -nanosrc/utils/thread_posix.h: -nanosrc/utils/thread_posix.c: -nanosrc/utils/err.h: -nanosrc/utils/../nn.h: -nanosrc/utils/../nn_config.h: -nanosrc/utils/fast.h: diff --git a/crypto777/pnacl/Release/nanosrc/utils/wire.deps b/crypto777/pnacl/Release/nanosrc/utils/wire.deps deleted file mode 100644 index 1d21c2754..000000000 --- a/crypto777/pnacl/Release/nanosrc/utils/wire.deps +++ /dev/null @@ -1,8 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/nanosrc/utils/wire.o: nanosrc/utils/wire.c \ - nanosrc/utils/wire.h nanosrc/utils/int.h \ - /Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/arpa/inet.h -nanosrc/utils/wire.c: -nanosrc/utils/wire.h: -nanosrc/utils/int.h: -/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/arpa/inet.h: diff --git a/iguana/Makefile b/iguana/Makefile index 518be082b..1eba19ce6 100644 --- a/iguana/Makefile +++ b/iguana/Makefile @@ -11,16 +11,19 @@ NACL_SDK_ROOT ?= $(abspath $(CURDIR)) TARGET = iguana -EXTRA= -D__PNACL +EXTRA= -D__PNACL -DNN_DISABLE_GETADDRINFO_A=1 -DNN_USE_LITERAL_IFADDR=1 -DNN_HAVE_STDINT=1 -DNN_HAVE_MSG_CONTROL=0 -DNN_HAVE_SEMAPHORE=1 -DNN_HAVE_POLL=1 -DNN_HAVE_SOCKETPAIR=1 -DNN_USE_POLL=1 include $(NACL_SDK_ROOT)/tools/common.mk include iguana.sources +include ../crypto777/crypto777.sources + CHROME_ARGS += --allow-nacl-socket-api=127.0.0.1 DEPS = nacl_io -LIBS = crypto777 curl ssl crypto z glibc-compat nacl_spawn ppapi nacl_io ppapi_simple # cli_main ppapi_cpp ppapi_simple +#LIBS = curl ssl crypto z glibc-compat nacl_spawn ppapi nacl_io ppapi_cpp ppapi_simple # cli_main +LIBS = crypto777 curl ssl crypto z pthread ppapi nacl_io -CFLAGS = -Wall -D__PNACL -fno-strict-aliasing $(EXTRA) +CFLAGS = -Wall -O2 -fno-strict-aliasing $(EXTRA) LFLAGS = libs # Build rules generated by macros from common.mk: diff --git a/iguana/SuperNET.c b/iguana/SuperNET.c index dfd70dfd8..01a6d98d9 100644 --- a/iguana/SuperNET.c +++ b/iguana/SuperNET.c @@ -211,7 +211,6 @@ int32_t nn_settimeouts(int32_t sock,int32_t sendtimeout,int32_t recvtimeout) int32_t nn_createsocket(struct supernet_info *myinfo,char *endpoint,int32_t bindflag,char *name,int32_t type,uint16_t port,int32_t sendtimeout,int32_t recvtimeout) { int32_t sock; - return(-1); if ( (sock= nn_socket(AF_SP,type)) < 0 ) fprintf(stderr,"error getting socket %s\n",nn_errstr()); if ( bindflag != 0 ) @@ -662,26 +661,25 @@ void SuperNET_init(void *args) else free(ipaddr), ipaddr = 0; } #endif - return; + //return; sendtimeout = 100; recvtimeout = 30000; - printf("call PUBpoint\n"); + PNACL_message("call PUBpoint myinfo.%p\n",myinfo); myinfo->PUBpoint[0] = myinfo->LBpoint[0] = 0; myinfo->PUBport = myinfo->LBport = 0; myinfo->PUBsock = myinfo->LBsock = -1; - printf("call OS_randombytes\n"); - + PNACL_message("call OS_randombytes\n"); OS_randombytes(myinfo->myaddr.pubkey.bytes,sizeof(myinfo->myaddr.pubkey)); strcpy(myinfo->transport,"tcp"); //if ( PUBport == 0 ) PUBport = SUPERNET_PUBPORT; //if ( LBport == 0 ) LBport = SUPERNET_LBPORT; - printf("call nn_createsocket\n"); + PNACL_message("call nn_createsocket\n"); if ( (myinfo->PUBport= PUBport) != 0 ) { myinfo->subsock = nn_createsocket(myinfo,0,0,"NN_SUB",NN_SUB,0,sendtimeout,0*recvtimeout); - printf("call setsockopt\n"); + printf("call setsockopt\n"); nn_setsockopt(myinfo->subsock,NN_SUB,NN_SUB_SUBSCRIBE,"",0); #ifndef __PNACL if ( ipaddr != 0 ) @@ -697,7 +695,7 @@ void SuperNET_init(void *args) myinfo->LBsock = nn_createsocket(myinfo,myinfo->LBpoint,1,"NN_REP",NN_REP,myinfo->LBport,sendtimeout,0*recvtimeout); #endif } else myinfo->reqsock = -1; - PNACL_message("launch subloop\n"); + PNACL_message("launch subloop\n"); iguana_launch(iguana_coinadd("BTCD"),"SuperNET_sub",SuperNET_subloop,myinfo,IGUANA_PERMTHREAD); if ( myinfo->LBsock >= 0 || myinfo->PUBsock >= 0 ) { @@ -709,7 +707,7 @@ void SuperNET_init(void *args) sleep(10); }*/ } - else if ( 0 ) + else if ( 1 ) { double startmillis = OS_milliseconds(); PNACL_message("start requests %f\n",startmillis); diff --git a/iguana/SuperNET.h b/iguana/SuperNET.h index 4121ed00c..a886b133b 100644 --- a/iguana/SuperNET.h +++ b/iguana/SuperNET.h @@ -18,7 +18,7 @@ #include "../crypto777/OS_portable.h" #include "../includes/cJSON.h" -#include "../includes/nanomsg/nn.h" +#include "../crypto777/nanosrc/nn.h" #define SUPERNET_LBPORT 7770 #define SUPERNET_PUBPORT 7771 diff --git a/iguana/iguana.sources b/iguana/iguana.sources index 7ab4c2748..920d106f1 100755 --- a/iguana/iguana.sources +++ b/iguana/iguana.sources @@ -1 +1 @@ -SOURCES := SuperNET.c ramchain_api.c iguana_tx.c iguana_wallet.c iguana_html.c iguana_pubkeys.c iguana_recv.c iguana_bundles.c iguana_msg.c iguana_rpc.c iguana777.c iguana_chains.c iguana_peers.c iguana_accept.c iguana_bitmap.c iguana_init.c iguana_ramchain.c iguana_blocks.c iguana_json.c $(CRYPTO777_SRCS) main.c +SOURCES := ramchain_api.c iguana_tx.c iguana_wallet.c iguana_html.c iguana_pubkeys.c iguana_recv.c iguana_bundles.c iguana_msg.c iguana_rpc.c iguana777.c iguana_chains.c iguana_peers.c iguana_accept.c iguana_bitmap.c iguana_init.c iguana_ramchain.c iguana_blocks.c iguana_json.c main.c diff --git a/iguana/m_unix b/iguana/m_unix index 8a020d43f..15a09586f 100755 --- a/iguana/m_unix +++ b/iguana/m_unix @@ -1 +1 @@ -gcc -DNN_DISABLE_GETADDRINFO_A=1 -DNN_USE_LITERAL_IFADDR=1 -DNN_HAVE_STDINT=1 -DNN_HAVE_MSG_CONTROL=1 -DNN_HAVE_SEMAPHORE=1 -DNN_HAVE_POLL=1 -DNN_HAVE_SOCKETPAIR=1 -DNN_USE_POLL=1 -o ../agents/iguana -O2 *.c ../crypto777/nanosrc/core/global.c ../crypto777/nanosrc/aio/usock.c ../agents/libcrypto777.a -lcurl -lssl -lcrypto -lpthread -lm +gcc -o ../agents/iguana -O2 *.c ../crypto777/nanosrc/core/global.c ../crypto777/nanosrc/aio/usock.c ../agents/libcrypto777.a -lcurl -lssl -lcrypto -lpthread -lm diff --git a/iguana/main.c b/iguana/main.c index 37ccdff2e..f0c07d050 100644 --- a/iguana/main.c +++ b/iguana/main.c @@ -244,9 +244,9 @@ void iguana_main(void *arg) } if ( arg != 0 ) SuperNET_JSON(&MYINFO,cJSON_Parse(arg),0); -#ifndef MINIGUANA - iguana_launch(iguana_coinadd("BTCD"),"SuperNET_init",SuperNET_init,&MYINFO,IGUANA_PERMTHREAD); -#endif +//#ifndef MINIGUANA + // iguana_launch(iguana_coinadd("BTCD"),"SuperNET_init",SuperNET_init,&MYINFO,IGUANA_PERMTHREAD); +//#endif //init_InstantDEX(); while ( 1 ) { diff --git a/iguana/pnacl/Release/SuperNET.deps b/iguana/pnacl/Release/SuperNET.deps deleted file mode 100644 index 97706d007..000000000 --- a/iguana/pnacl/Release/SuperNET.deps +++ /dev/null @@ -1,53 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/SuperNET.o: SuperNET.c ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - iguana777.h ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -SuperNET.c: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -iguana777.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/dir.stamp b/iguana/pnacl/Release/dir.stamp deleted file mode 100644 index 14fc84660..000000000 --- a/iguana/pnacl/Release/dir.stamp +++ /dev/null @@ -1 +0,0 @@ -Directory Stamp diff --git a/iguana/pnacl/Release/iguana.nmf b/iguana/pnacl/Release/iguana.nmf deleted file mode 100644 index 9d37ed227..000000000 --- a/iguana/pnacl/Release/iguana.nmf +++ /dev/null @@ -1,12 +0,0 @@ -{ - "program": { - "portable": { - "pnacl-translate": { - "url": "iguana.pexe" - }, - "pnacl-debug": { - "url": "iguana_unstripped.bc" - } - } - } -} diff --git a/iguana/pnacl/Release/iguana.pexe b/iguana/pnacl/Release/iguana.pexe deleted file mode 100644 index fce8c9997..000000000 Binary files a/iguana/pnacl/Release/iguana.pexe and /dev/null differ diff --git a/iguana/pnacl/Release/iguana777.deps b/iguana/pnacl/Release/iguana777.deps deleted file mode 100644 index 3183076c4..000000000 --- a/iguana/pnacl/Release/iguana777.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana777.o: iguana777.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana777.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_accept.deps b/iguana/pnacl/Release/iguana_accept.deps deleted file mode 100644 index f2d1a0935..000000000 --- a/iguana/pnacl/Release/iguana_accept.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_accept.o: iguana_accept.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_accept.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_bitmap.deps b/iguana/pnacl/Release/iguana_bitmap.deps deleted file mode 100644 index 6bdeba3cf..000000000 --- a/iguana/pnacl/Release/iguana_bitmap.deps +++ /dev/null @@ -1,59 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_bitmap.o: iguana_bitmap.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h \ - ../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jconfig.h \ - ../crypto777/jpeg/jmorecfg.h -iguana_bitmap.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: -../crypto777/jpeg/jpeglib.h: -../crypto777/jpeg/jconfig.h: -../crypto777/jpeg/jmorecfg.h: diff --git a/iguana/pnacl/Release/iguana_blocks.deps b/iguana/pnacl/Release/iguana_blocks.deps deleted file mode 100644 index 338cf2e81..000000000 --- a/iguana/pnacl/Release/iguana_blocks.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_blocks.o: iguana_blocks.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_blocks.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_bundles.deps b/iguana/pnacl/Release/iguana_bundles.deps deleted file mode 100644 index 253ddb7ef..000000000 --- a/iguana/pnacl/Release/iguana_bundles.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_bundles.o: iguana_bundles.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_bundles.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_chains.deps b/iguana/pnacl/Release/iguana_chains.deps deleted file mode 100644 index f2cf0f964..000000000 --- a/iguana/pnacl/Release/iguana_chains.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_chains.o: iguana_chains.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_chains.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_html.deps b/iguana/pnacl/Release/iguana_html.deps deleted file mode 100644 index d255df681..000000000 --- a/iguana/pnacl/Release/iguana_html.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_html.o: iguana_html.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_html.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_init.deps b/iguana/pnacl/Release/iguana_init.deps deleted file mode 100644 index c95b6275b..000000000 --- a/iguana/pnacl/Release/iguana_init.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_init.o: iguana_init.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_init.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_json.deps b/iguana/pnacl/Release/iguana_json.deps deleted file mode 100644 index 4a1f5953a..000000000 --- a/iguana/pnacl/Release/iguana_json.deps +++ /dev/null @@ -1,59 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_json.o: iguana_json.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h \ - ../includes/iguana_apideclares.h ../includes/iguana_apiundefs.h \ - ../includes/iguana_apidefs.h -iguana_json.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: -../includes/iguana_apideclares.h: -../includes/iguana_apiundefs.h: -../includes/iguana_apidefs.h: diff --git a/iguana/pnacl/Release/iguana_msg.deps b/iguana/pnacl/Release/iguana_msg.deps deleted file mode 100644 index ffc5ff160..000000000 --- a/iguana/pnacl/Release/iguana_msg.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_msg.o: iguana_msg.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_msg.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_peers.deps b/iguana/pnacl/Release/iguana_peers.deps deleted file mode 100644 index d06f8d2d7..000000000 --- a/iguana/pnacl/Release/iguana_peers.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_peers.o: iguana_peers.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_peers.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_pubkeys.deps b/iguana/pnacl/Release/iguana_pubkeys.deps deleted file mode 100644 index bfb45251d..000000000 --- a/iguana/pnacl/Release/iguana_pubkeys.deps +++ /dev/null @@ -1,75 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_pubkeys.o: iguana_pubkeys.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h \ - ../includes/openssl/ec.h ../includes/openssl/opensslconf.h \ - ../includes/openssl/asn1.h ../includes/openssl/e_os2.h \ - ../includes/openssl/bio.h ../includes/openssl/crypto.h \ - ../includes/openssl/stack.h ../includes/openssl/safestack.h \ - ../includes/openssl/opensslv.h ../includes/openssl/ossl_typ.h \ - ../includes/openssl/symhacks.h ../includes/openssl/bn.h \ - ../includes/openssl/ecdsa.h ../includes/openssl/obj_mac.h -iguana_pubkeys.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: -../includes/openssl/ec.h: -../includes/openssl/opensslconf.h: -../includes/openssl/asn1.h: -../includes/openssl/e_os2.h: -../includes/openssl/bio.h: -../includes/openssl/crypto.h: -../includes/openssl/stack.h: -../includes/openssl/safestack.h: -../includes/openssl/opensslv.h: -../includes/openssl/ossl_typ.h: -../includes/openssl/symhacks.h: -../includes/openssl/bn.h: -../includes/openssl/ecdsa.h: -../includes/openssl/obj_mac.h: diff --git a/iguana/pnacl/Release/iguana_ramchain.deps b/iguana/pnacl/Release/iguana_ramchain.deps deleted file mode 100644 index ccf416091..000000000 --- a/iguana/pnacl/Release/iguana_ramchain.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_ramchain.o: iguana_ramchain.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_ramchain.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_recv.deps b/iguana/pnacl/Release/iguana_recv.deps deleted file mode 100644 index 2ea0a528f..000000000 --- a/iguana/pnacl/Release/iguana_recv.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_recv.o: iguana_recv.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_recv.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_rpc.deps b/iguana/pnacl/Release/iguana_rpc.deps deleted file mode 100644 index 18e374a68..000000000 --- a/iguana/pnacl/Release/iguana_rpc.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_rpc.o: iguana_rpc.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_rpc.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_tx.deps b/iguana/pnacl/Release/iguana_tx.deps deleted file mode 100644 index 59be2b8e2..000000000 --- a/iguana/pnacl/Release/iguana_tx.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_tx.o: iguana_tx.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_tx.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/iguana_unstripped.bc b/iguana/pnacl/Release/iguana_unstripped.bc deleted file mode 100755 index 6594b6e0f..000000000 Binary files a/iguana/pnacl/Release/iguana_unstripped.bc and /dev/null differ diff --git a/iguana/pnacl/Release/iguana_unstripped.pexe b/iguana/pnacl/Release/iguana_unstripped.pexe deleted file mode 100644 index fce8c9997..000000000 Binary files a/iguana/pnacl/Release/iguana_unstripped.pexe and /dev/null differ diff --git a/iguana/pnacl/Release/iguana_wallet.deps b/iguana/pnacl/Release/iguana_wallet.deps deleted file mode 100644 index ea36653f1..000000000 --- a/iguana/pnacl/Release/iguana_wallet.deps +++ /dev/null @@ -1,54 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/iguana_wallet.o: iguana_wallet.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -iguana_wallet.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/main.deps b/iguana/pnacl/Release/main.deps deleted file mode 100644 index 497fa5e22..000000000 --- a/iguana/pnacl/Release/main.deps +++ /dev/null @@ -1,93 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/main.o: main.c ../pnacl_main.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/ioctl.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/mount.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/select.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - ../includes/ppapi/c/ppb.h ../includes/ppapi/c/pp_macros.h \ - ../includes/ppapi/c/pp_stdint.h ../includes/ppapi/c/ppb_var.h \ - ../includes/ppapi/c/pp_bool.h ../includes/ppapi/c/pp_module.h \ - ../includes/ppapi/c/pp_resource.h ../includes/ppapi/c/pp_var.h \ - ../includes/ppapi/c/ppb_instance.h ../includes/ppapi/c/pp_instance.h \ - ../includes/ppapi/c/ppb_messaging.h \ - ../includes/ppapi/c/ppp_message_handler.h \ - ../includes/ppapi/c/ppb_var_array.h \ - ../includes/ppapi/c/ppb_var_dictionary.h \ - ../includes/ppapi/c/pp_errors.h ../includes/ppapi/c/ppp_messaging.h \ - ../includes/ppapi/c/ppp_instance.h ../includes/ppapi/c/pp_point.h \ - ../includes/ppapi/c/pp_rect.h ../includes/ppapi/c/pp_size.h \ - iguana777.h ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h -main.c: -../pnacl_main.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/ioctl.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/mount.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/select.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -../includes/ppapi/c/ppb.h: -../includes/ppapi/c/pp_macros.h: -../includes/ppapi/c/pp_stdint.h: -../includes/ppapi/c/ppb_var.h: -../includes/ppapi/c/pp_bool.h: -../includes/ppapi/c/pp_module.h: -../includes/ppapi/c/pp_resource.h: -../includes/ppapi/c/pp_var.h: -../includes/ppapi/c/ppb_instance.h: -../includes/ppapi/c/pp_instance.h: -../includes/ppapi/c/ppb_messaging.h: -../includes/ppapi/c/ppp_message_handler.h: -../includes/ppapi/c/ppb_var_array.h: -../includes/ppapi/c/ppb_var_dictionary.h: -../includes/ppapi/c/pp_errors.h: -../includes/ppapi/c/ppp_messaging.h: -../includes/ppapi/c/ppp_instance.h: -../includes/ppapi/c/pp_point.h: -../includes/ppapi/c/pp_rect.h: -../includes/ppapi/c/pp_size.h: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: diff --git a/iguana/pnacl/Release/nacl_io.stamp b/iguana/pnacl/Release/nacl_io.stamp deleted file mode 100644 index c656e87dd..000000000 --- a/iguana/pnacl/Release/nacl_io.stamp +++ /dev/null @@ -1 +0,0 @@ -TOUCHED /home/vikku/Desktop/iguana/work/vineet/SuperNET/iguana/pnacl/Release/nacl_io.stamp diff --git a/iguana/pnacl/Release/ramchain_api.deps b/iguana/pnacl/Release/ramchain_api.deps deleted file mode 100644 index 74c83a310..000000000 --- a/iguana/pnacl/Release/ramchain_api.deps +++ /dev/null @@ -1,57 +0,0 @@ -# Updated by fix_deps.py -pnacl/Release/ramchain_api.o: ramchain_api.c iguana777.h \ - ../crypto777/OS_portable.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h \ - ../crypto777/../includes/libgfshare.h \ - ../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ - ../crypto777/../includes/curve25519.h \ - /home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h \ - ../crypto777/../includes/cJSON.h \ - ../crypto777/../includes/../crypto777/OS_portable.h SuperNET.h \ - ../includes/nanomsg/nn.h ../includes/nanomsg/nn_config.h \ - ../includes/nanomsg/pair.h ../includes/nanomsg/bus.h \ - ../includes/nanomsg/pubsub.h ../includes/nanomsg/reqrep.h \ - ../includes/nanomsg/survey.h ../includes/nanomsg/pipeline.h \ - ../includes/iguana_api.h \ - ../crypto777/../includes/../includes/iguana_apidefs.h \ - ../crypto777/../includes/../includes/iguana_apideclares.h \ - ../crypto777/../includes/../includes/iguana_apiundefs.h \ - ../includes/iguana_apidefs.h ../includes/iguana_apiundefs.h -ramchain_api.c: -iguana777.h: -../crypto777/OS_portable.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/time.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/poll.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netdb.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet/in.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/netinet6/in6.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/sys/socket.h: -../crypto777/../includes/libgfshare.h: -../crypto777/../includes/utlist.h: -../crypto777/../includes/uthash.h: -../crypto777/../includes/curve25519.h: -/home/vikku/Desktop/iguana/nacl_sdk/pepper_46/include/pnacl/memory.h: -../crypto777/../includes/cJSON.h: -../crypto777/../includes/../crypto777/OS_portable.h: -SuperNET.h: -../includes/nanomsg/nn.h: -../includes/nanomsg/nn_config.h: -../includes/nanomsg/pair.h: -../includes/nanomsg/bus.h: -../includes/nanomsg/pubsub.h: -../includes/nanomsg/reqrep.h: -../includes/nanomsg/survey.h: -../includes/nanomsg/pipeline.h: -../includes/iguana_api.h: -../crypto777/../includes/../includes/iguana_apidefs.h: -../crypto777/../includes/../includes/iguana_apideclares.h: -../crypto777/../includes/../includes/iguana_apiundefs.h: -../includes/iguana_apidefs.h: -../includes/iguana_apiundefs.h: diff --git a/iguana/ramchain_api.c b/iguana/ramchain_api.c index ef599af41..f968e2c18 100755 --- a/iguana/ramchain_api.c +++ b/iguana/ramchain_api.c @@ -34,145 +34,149 @@ ZERO_ARGS(ramchain,getblockcount) return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,listaddressgroupings) +HASH_AND_INT(ramchain,listsinceblock,blockhash,target) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,walletlock) +// pubkeys +ZERO_ARGS(ramchain,makekeypair) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,checkwallet) +STRING_ARG(ramchain,validatepubkey,pubkey) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,repairwallet) +INT_ARRAY_STRING(ramchain,createmultisig,M,array,account) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,makekeypair) +STRING_ARG(ramchain,decodescript,script) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,gettxoutsetinfo) +STRING_ARG(ramchain,vanitygen,vanity) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,listlockunspent) +TWO_STRINGS(ramchain,signmessage,address,message) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -ZERO_ARGS(ramchain,getrawchangeaddress) +THREE_STRINGS(ramchain,verifymessage,address,sig,message) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -TWO_INTS(ramchain,listaccounts,minconf,includewatchonly) +// tx +TWO_ARRAYS(ramchain,createrawtransaction,vins,vouts) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -TWO_INTS(ramchain,listreceivedbyaddress,minconf,includeempty) +HASH_AND_INT(ramchain,getrawtransaction,txid,verbose) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -TWOINTS_AND_ARRAY(ramchain,listunspent,minconf,maxconf,array) +STRING_ARG(ramchain,decoderawtransaction,rawtx) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,dumpwallet,filename) +STRING_AND_TWOARRAYS(ramchain,signrawtransaction,rawtx,vins,privkeys) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,backupwallet,filename) +STRING_AND_INT(ramchain,sendrawtransaction,rawtx,allowhighfees) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,encryptwallet,passphrase) +// unspents +ZERO_ARGS(ramchain,gettxoutsetinfo) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,validatepubkey,pubkey) +INT_AND_ARRAY(ramchain,lockunspent,flag,array) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,getnewaddress,account) +ZERO_ARGS(ramchain,listlockunspent) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,vanitygen,vanity) +HASH_AND_TWOINTS(ramchain,gettxout,txid,vout,mempool) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,getaddressesbyaccount,account) +TWOINTS_AND_ARRAY(ramchain,listunspent,minconf,maxconf,array) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,getaccount,address) +STRING_AND_INT(ramchain,getreceivedbyaddress,address,minconf) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,getaccountaddress,account) +TWO_INTS(ramchain,listreceivedbyaddress,minconf,includeempty) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,dumpprivkey,address) +// single address/account funcs +ZERO_ARGS(ramchain,getrawchangeaddress) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,importwallet,filename) +STRING_ARG(ramchain,getnewaddress,account) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,decoderawtransaction,rawtx) +TWOSTRINGS_AND_INT(ramchain,importprivkey,wif,account,rescan) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_ARG(ramchain,decodescript,script) +STRING_ARG(ramchain,dumpprivkey,address) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); @@ -184,142 +188,147 @@ TWO_STRINGS(ramchain,setaccount,address,account) return(jprint(retjson,1)); } -TWO_STRINGS(ramchain,walletpassphrasechange,oldpassphrase,newpassphrase) +STRING_ARG(ramchain,getaccount,address) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -TWO_STRINGS(ramchain,signmessage,address,message) +STRING_ARG(ramchain,getaccountaddress,account) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -THREE_STRINGS(ramchain,verifymessage,address,sig,message) +// multiple address +THREE_INTS(ramchain,getbalance,confirmations,includeempty,watchonly) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -THREE_INTS(ramchain,listreceivedbyaccount,confirmations,includeempty,watchonly) +STRING_ARG(ramchain,getaddressesbyaccount,account) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -THREE_INTS(ramchain,getbalance,confirmations,includeempty,watchonly) +STRING_AND_INT(ramchain,getreceivedbyaccount,account,includeempty) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -TWOSTRINGS_AND_INT(ramchain,importprivkey,wif,account,rescan) +THREE_INTS(ramchain,listreceivedbyaccount,confirmations,includeempty,watchonly) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_AND_INT(ramchain,getreceivedbyaccount,account,includeempty) +STRING_AND_THREEINTS(ramchain,listtransactions,account,count,skip,includewatchonly) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_AND_INT(ramchain,walletpassphrase,passphrase,timeout) +// spend funcs +DOUBLE_ARG(ramchain,settxfee,amount) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_AND_INT(ramchain,getreceivedbyaddress,address,minconf) +SS_D_I_S(ramchain,move,fromaccount,toaccount,amount,minconf,comment) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_AND_INT(ramchain,sendrawtransaction,rawtx,allowhighfees) +SS_D_I_SS(ramchain,sendfrom,fromaccount,toaddress,amount,minconf,comment,comment2) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -HASH_AND_INT(ramchain,listsinceblock,blockhash,target) +S_A_I_S(ramchain,sendmany,fromaccount,array,minconf,comment) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -HASH_AND_INT(ramchain,getrawtransaction,txid,verbose) +S_D_SS(ramchain,sendtoaddress,address,amount,comment,comment2) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_AND_THREEINTS(ramchain,listtransactions,account,count,skip,includewatchonly) +// entire wallet funcs +TWO_INTS(ramchain,listaccounts,minconf,includewatchonly) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -HASH_AND_TWOINTS(ramchain,gettxout,txid,vout,mempool) +ZERO_ARGS(ramchain,listaddressgroupings) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -DOUBLE_ARG(ramchain,settxfee,amount) +ZERO_ARGS(ramchain,walletlock) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -INT_AND_ARRAY(ramchain,lockunspent,flag,array) +ZERO_ARGS(ramchain,checkwallet) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -INT_ARRAY_STRING(ramchain,createmultisig,M,array,account) +ZERO_ARGS(ramchain,repairwallet) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -TWO_ARRAYS(ramchain,createrawtransaction,vins,vouts) +STRING_ARG(ramchain,dumpwallet,filename) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -STRING_AND_TWOARRAYS(ramchain,signrawtransaction,rawtx,vins,privkeys) +STRING_ARG(ramchain,backupwallet,filename) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -SS_D_I_S(ramchain,move,fromaccount,toaccount,amount,minconf,comment) +STRING_ARG(ramchain,importwallet,filename) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -SS_D_I_SS(ramchain,sendfrom,fromaccount,toaddress,amount,minconf,comment,comment2) +STRING_AND_INT(ramchain,walletpassphrase,passphrase,timeout) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -S_A_I_S(ramchain,sendmany,fromaccount,array,minconf,comment) +TWO_STRINGS(ramchain,walletpassphrasechange,oldpassphrase,newpassphrase) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } -S_D_SS(ramchain,sendtoaddress,address,amount,comment,comment2) +STRING_ARG(ramchain,encryptwallet,passphrase) { cJSON *retjson = cJSON_CreateObject(); return(jprint(retjson,1)); } + + #undef IGUANA_ARGS #include "../includes/iguana_apiundefs.h" diff --git a/includes/nanomsg/bus.h b/includes/nanomsg/bus.h deleted file mode 100755 index 7572903ed..000000000 --- a/includes/nanomsg/bus.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Copyright (c) 2013 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef BUS_H_INCLUDED -#define BUS_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_PROTO_BUS 7 - -#define NN_BUS (NN_PROTO_BUS * 16 + 0) - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/inproc.h b/includes/nanomsg/inproc.h deleted file mode 100755 index ed3879908..000000000 --- a/includes/nanomsg/inproc.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef INPROC_H_INCLUDED -#define INPROC_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_INPROC -1 - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/ipc.h b/includes/nanomsg/ipc.h deleted file mode 100755 index fc5cb62c2..000000000 --- a/includes/nanomsg/ipc.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef IPC_H_INCLUDED -#define IPC_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_IPC -2 - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/nn.h b/includes/nanomsg/nn.h deleted file mode 100755 index 39953b26b..000000000 --- a/includes/nanomsg/nn.h +++ /dev/null @@ -1,403 +0,0 @@ -/* - Copyright (c) 2012-2014 Martin Sustrik All rights reserved. - Copyright (c) 2013 GoPivotal, Inc. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef NN_H_INCLUDED -#define NN_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include "nn_config.h" - -/* Handle DSO symbol visibility */ -#if defined NN_NO_EXPORTS -# define NN_EXPORT -#else -# if defined _WIN32 -# if defined NN_EXPORTS -# define NN_EXPORT __declspec(dllexport) -# else -# define NN_EXPORT __declspec(dllimport) -# endif -# else -# if defined __SUNPRO_C -# define NN_EXPORT __global -# elif (defined __GNUC__ && __GNUC__ >= 4) || \ - defined __INTEL_COMPILER || defined __clang__ -# define NN_EXPORT __attribute__ ((visibility("default"))) -# else -# define NN_EXPORT -# endif -# endif -#endif - -/******************************************************************************/ -/* ABI versioning support. */ -/******************************************************************************/ - -/* Don't change this unless you know exactly what you're doing and have */ -/* read and understand the following documents: */ -/* www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html */ -/* www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html */ - -/* The current interface version. */ -#define NN_VERSION_CURRENT 2 - -/* The latest revision of the current interface. */ -#define NN_VERSION_REVISION 2 - -/* How many past interface versions are still supported. */ -#define NN_VERSION_AGE 2 - -/******************************************************************************/ -/* Errors. */ -/******************************************************************************/ - -/* A number random enough not to collide with different errno ranges on */ -/* different OSes. The assumption is that error_t is at least 32-bit type. */ -#define NN_HAUSNUMERO 156384712 - -/* On some platforms some standard POSIX errnos are not defined. */ -#ifndef ENOTSUP -#define ENOTSUP (NN_HAUSNUMERO + 1) -#endif -#ifndef EPROTONOSUPPORT -#define EPROTONOSUPPORT (NN_HAUSNUMERO + 2) -#endif -#ifndef ENOBUFS -#define ENOBUFS (NN_HAUSNUMERO + 3) -#endif -#ifndef ENETDOWN -#define ENETDOWN (NN_HAUSNUMERO + 4) -#endif -#ifndef EADDRINUSE -#define EADDRINUSE (NN_HAUSNUMERO + 5) -#endif -#ifndef EADDRNOTAVAIL -#define EADDRNOTAVAIL (NN_HAUSNUMERO + 6) -#endif -#ifndef ECONNREFUSED -#define ECONNREFUSED (NN_HAUSNUMERO + 7) -#endif -#ifndef EINPROGRESS -#define EINPROGRESS (NN_HAUSNUMERO + 8) -#endif -#ifndef ENOTSOCK -#define ENOTSOCK (NN_HAUSNUMERO + 9) -#endif -#ifndef EAFNOSUPPORT -#define EAFNOSUPPORT (NN_HAUSNUMERO + 10) -#endif -#ifndef EPROTO -#define EPROTO (NN_HAUSNUMERO + 11) -#endif -#ifndef EAGAIN -#define EAGAIN (NN_HAUSNUMERO + 12) -#endif -#ifndef EBADF -#define EBADF (NN_HAUSNUMERO + 13) -#endif -#ifndef EINVAL -#define EINVAL (NN_HAUSNUMERO + 14) -#endif -#ifndef EMFILE -#define EMFILE (NN_HAUSNUMERO + 15) -#endif -#ifndef EFAULT -#define EFAULT (NN_HAUSNUMERO + 16) -#endif -#ifndef EACCES -#define EACCES (NN_HAUSNUMERO + 17) -#endif -#ifndef EACCESS -#define EACCESS (EACCES) -#endif -#ifndef ENETRESET -#define ENETRESET (NN_HAUSNUMERO + 18) -#endif -#ifndef ENETUNREACH -#define ENETUNREACH (NN_HAUSNUMERO + 19) -#endif -#ifndef EHOSTUNREACH -#define EHOSTUNREACH (NN_HAUSNUMERO + 20) -#endif -#ifndef ENOTCONN -#define ENOTCONN (NN_HAUSNUMERO + 21) -#endif -#ifndef EMSGSIZE -#define EMSGSIZE (NN_HAUSNUMERO + 22) -#endif -#ifndef ETIMEDOUT -#define ETIMEDOUT (NN_HAUSNUMERO + 23) -#endif -#ifndef ECONNABORTED -#define ECONNABORTED (NN_HAUSNUMERO + 24) -#endif -#ifndef ECONNRESET -#define ECONNRESET (NN_HAUSNUMERO + 25) -#endif -#ifndef ENOPROTOOPT -#define ENOPROTOOPT (NN_HAUSNUMERO + 26) -#endif -#ifndef EISCONN -#define EISCONN (NN_HAUSNUMERO + 27) -#define NN_EISCONN_DEFINED -#endif -#ifndef ESOCKTNOSUPPORT -#define ESOCKTNOSUPPORT (NN_HAUSNUMERO + 28) -#endif - -/* Native nanomsg error codes. */ -#ifndef ETERM -#define ETERM (NN_HAUSNUMERO + 53) -#endif -#ifndef EFSM -#define EFSM (NN_HAUSNUMERO + 54) -#endif - -/* This function retrieves the errno as it is known to the library. */ -/* The goal of this function is to make the code 100% portable, including */ -/* where the library is compiled with certain CRT library (on Windows) and */ -/* linked to an application that uses different CRT library. */ -NN_EXPORT int nn_errno (void); - -/* Resolves system errors and native errors to human-readable string. */ -NN_EXPORT const char *nn_strerror (int errnum); - - -/* Returns the symbol name (e.g. "NN_REQ") and value at a specified index. */ -/* If the index is out-of-range, returns NULL and sets errno to EINVAL */ -/* General usage is to start at i=0 and iterate until NULL is returned. */ -NN_EXPORT const char *nn_symbol (int i, int *value); - -/* Constants that are returned in `ns` member of nn_symbol_properties */ -#define NN_NS_NAMESPACE 0 -#define NN_NS_VERSION 1 -#define NN_NS_DOMAIN 2 -#define NN_NS_TRANSPORT 3 -#define NN_NS_PROTOCOL 4 -#define NN_NS_OPTION_LEVEL 5 -#define NN_NS_SOCKET_OPTION 6 -#define NN_NS_TRANSPORT_OPTION 7 -#define NN_NS_OPTION_TYPE 8 -#define NN_NS_OPTION_UNIT 9 -#define NN_NS_FLAG 10 -#define NN_NS_ERROR 11 -#define NN_NS_LIMIT 12 -#define NN_NS_EVENT 13 - -/* Constants that are returned in `type` member of nn_symbol_properties */ -#define NN_TYPE_NONE 0 -#define NN_TYPE_INT 1 -#define NN_TYPE_STR 2 - -/* Constants that are returned in the `unit` member of nn_symbol_properties */ -#define NN_UNIT_NONE 0 -#define NN_UNIT_BYTES 1 -#define NN_UNIT_MILLISECONDS 2 -#define NN_UNIT_PRIORITY 3 -#define NN_UNIT_BOOLEAN 4 - -/* Structure that is returned from nn_symbol */ -struct nn_symbol_properties { - - /* The constant value */ - int value; - - /* The constant name */ - const char* name; - - /* The constant namespace, or zero for namespaces themselves */ - int ns; - - /* The option type for socket option constants */ - int type; - - /* The unit for the option value for socket option constants */ - int unit; -}; - -/* Fills in nn_symbol_properties structure and returns it's length */ -/* If the index is out-of-range, returns 0 */ -/* General usage is to start at i=0 and iterate until zero is returned. */ -NN_EXPORT int nn_symbol_info (int i, - struct nn_symbol_properties *buf, int buflen); - -/******************************************************************************/ -/* Helper function for shutting down multi-threaded applications. */ -/******************************************************************************/ - -NN_EXPORT void nn_term (void); - -/******************************************************************************/ -/* Zero-copy support. */ -/******************************************************************************/ - -#define NN_MSG ((size_t) -1) - -NN_EXPORT void *nn_allocmsg (size_t size, int type); -NN_EXPORT void *nn_reallocmsg (void *msg, size_t size); -NN_EXPORT int nn_freemsg (void *msg); - -/******************************************************************************/ -/* Socket definition. */ -/******************************************************************************/ - -struct nn_iovec { - void *iov_base; - size_t iov_len; -}; - -struct nn_msghdr { - struct nn_iovec *msg_iov; - int msg_iovlen; - void *msg_control; - size_t msg_controllen; -}; - -struct nn_cmsghdr { - size_t cmsg_len; - int cmsg_level; - int cmsg_type; -}; - -/* Internal stuff. Not to be used directly. */ -NN_EXPORT struct nn_cmsghdr *nn_cmsg_nxthdr_ ( - const struct nn_msghdr *mhdr, - const struct nn_cmsghdr *cmsg); -#define NN_CMSG_ALIGN_(len) \ - (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1)) - -/* POSIX-defined msghdr manipulation. */ - -#define NN_CMSG_FIRSTHDR(mhdr) \ - nn_cmsg_nxthdr_ ((struct nn_msghdr*) (mhdr), NULL) - -#define NN_CMSG_NXTHDR(mhdr, cmsg) \ - nn_cmsg_nxthdr_ ((struct nn_msghdr*) (mhdr), (struct nn_cmsghdr*) (cmsg)) - -#define NN_CMSG_DATA(cmsg) \ - ((unsigned char*) (((struct nn_cmsghdr*) (cmsg)) + 1)) - -/* Extensions to POSIX defined by RFC 3542. */ - -#define NN_CMSG_SPACE(len) \ - (NN_CMSG_ALIGN_ (len) + NN_CMSG_ALIGN_ (sizeof (struct nn_cmsghdr))) - -#define NN_CMSG_LEN(len) \ - (NN_CMSG_ALIGN_ (sizeof (struct nn_cmsghdr)) + (len)) - -/* SP address families. */ -#define AF_SP 1 -#define AF_SP_RAW 2 - -/* Max size of an SP address. */ -#define NN_SOCKADDR_MAX 128 - -/* Socket option levels: Negative numbers are reserved for transports, - positive for socket types. */ -#define NN_SOL_SOCKET 0 - -/* Generic socket options (NN_SOL_SOCKET level). */ -#define NN_LINGER 1 -#define NN_SNDBUF 2 -#define NN_RCVBUF 3 -#define NN_SNDTIMEO 4 -#define NN_RCVTIMEO 5 -#define NN_RECONNECT_IVL 6 -#define NN_RECONNECT_IVL_MAX 7 -#define NN_SNDPRIO 8 -#define NN_RCVPRIO 9 -#define NN_SNDFD 10 -#define NN_RCVFD 11 -#define NN_DOMAIN 12 -#define NN_PROTOCOL 13 -#define NN_IPV4ONLY 14 -#define NN_SOCKET_NAME 15 -#define NN_RCVMAXSIZE 16 - -/* Send/recv options. */ -#define NN_DONTWAIT 1 - -/* Ancillary data. */ -#define PROTO_SP 1 -#define SP_HDR 1 - -NN_EXPORT int nn_socket (int domain, int protocol); -NN_EXPORT int nn_close (int s); -NN_EXPORT int nn_setsockopt (int s, int level, int option, const void *optval, - size_t optvallen); -NN_EXPORT int nn_getsockopt (int s, int level, int option, void *optval, - size_t *optvallen); -NN_EXPORT int nn_bind (int s, const char *addr); -NN_EXPORT int nn_connect (int s, const char *addr); -NN_EXPORT int nn_shutdown (int s, int how); -NN_EXPORT int nn_send (int s, const void *buf, size_t len, int flags); -NN_EXPORT int nn_recv (int s, void *buf, size_t len, int flags); -NN_EXPORT int nn_sendmsg (int s, const struct nn_msghdr *msghdr, int flags); -NN_EXPORT int nn_recvmsg (int s, struct nn_msghdr *msghdr, int flags); - -/******************************************************************************/ -/* Socket mutliplexing support. */ -/******************************************************************************/ - -#define NN_POLLIN 1 -#define NN_POLLOUT 2 - -struct nn_pollfd { - int fd; - short events; - short revents; -}; - -NN_EXPORT int nn_poll (struct nn_pollfd *fds, int nfds, int timeout); - -/******************************************************************************/ -/* Built-in support for devices. */ -/******************************************************************************/ - -NN_EXPORT int nn_device (int s1, int s2); - -/******************************************************************************/ -/* Built-in support for multiplexers. */ -/******************************************************************************/ - -NN_EXPORT int nn_tcpmuxd (int port); - -#ifdef __cplusplus -} -#endif - - -#endif - -#include "pair.h" -#include "bus.h" -#include "pubsub.h" -#include "reqrep.h" -#include "survey.h" -#include "pipeline.h" - diff --git a/includes/nanomsg/nn_config.h b/includes/nanomsg/nn_config.h deleted file mode 100755 index 7087b8295..000000000 --- a/includes/nanomsg/nn_config.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - Copyright (c) 2013 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef NNCONFIG_H_INCLUDED -#define NNCONFIG_H_INCLUDED - -#ifdef __APPLE__ -#define NN_HAVE_OSX 1 -#endif - -#define NN_HAVE_POLL 1 // must have -#define NN_HAVE_SEMAPHORE 1 // must have - -// need one of following 3, listed in order of precedence, used by efd* -//#define NN_HAVE_EVENTFD 1 -//#define NN_HAVE_PIPE 1 -#define NN_HAVE_SOCKETPAIR 1 - -// need one of following 3, listed in order of precedence, used by poller* -#define NN_USE_POLL 1 -//#define NN_USE_EPOLL 1 -//#define NN_USE_KQUEUE 1 - -#define NN_DISABLE_GETADDRINFO_A 1 -#define NN_USE_LITERAL_IFADDR 1 -#define NN_HAVE_STDINT 1 - -#define NN_HAVE_MSG_CONTROL 1 -//#define STANDALONE 1 - -#ifdef __PNACL -//#define FD_CLOEXEC 1 - -void PostMessage(const char* format, ...); -#include -#include -#else -//#define NN_ENABLE_EXTRA 1 -#define PNACL_message printf -#include -#include -#endif - -/* Size of the buffer used for batch-reads of inbound data. To keep the - performance optimal make sure that this value is larger than network MTU. */ -#define NN_USOCK_BATCH_SIZE (2048) -//#define NN_USOCK_BATCH_SIZE (_NN_USOCK_BATCH_SIZE - 5 - 256 - 16) // adjust for veclen/clen + sizeof(ctrl) - -#if defined __PNACL || defined __APPLE__ -#define NN_USE_MYMSG 1 -#endif - -#define nn_errstr() nn_strerror(nn_errno()) - -#endif - diff --git a/includes/nanomsg/pair.h b/includes/nanomsg/pair.h deleted file mode 100755 index 3409418f2..000000000 --- a/includes/nanomsg/pair.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef PAIR_H_INCLUDED -#define PAIR_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_PROTO_PAIR 1 - -#define NN_PAIR (NN_PROTO_PAIR * 16 + 0) - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/pipeline.h b/includes/nanomsg/pipeline.h deleted file mode 100755 index db9b7d729..000000000 --- a/includes/nanomsg/pipeline.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - Copyright (c) 2013 GoPivotal, Inc. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef PIPELINE_H_INCLUDED -#define PIPELINE_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_PROTO_PIPELINE 5 - -#define NN_PUSH (NN_PROTO_PIPELINE * 16 + 0) -#define NN_PULL (NN_PROTO_PIPELINE * 16 + 1) - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/protocol.h b/includes/nanomsg/protocol.h deleted file mode 100755 index 05664e4a6..000000000 --- a/includes/nanomsg/protocol.h +++ /dev/null @@ -1,198 +0,0 @@ -/* - Copyright (c) 2012-2013 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef NN_PROTOCOL_INCLUDED -#define NN_PROTOCOL_INCLUDED - -#include "utils/msg.h" -#include "utils/list.h" -#include "utils/int.h" - -#include - -struct nn_ctx; - -/******************************************************************************/ -/* Pipe class. */ -/******************************************************************************/ - -/* Any combination of following flags can be returned from successful call - to nn_pipe_send or nn_pipe_recv. */ - -/* This flag means that the pipe can't be used for receiving (when returned - from nn_pipe_recv()) or sending (when returned from nn_pipe_send()). - Protocol implementation should not send/recv messages from the pipe until - the pipe is revived by in()/out() function. */ -#define NN_PIPE_RELEASE 1 - -/* Specifies that received message is already split into header and body. - This flag is used only by inproc transport to avoid merging and re-splitting - the messages passed with a single process. */ -#define NN_PIPE_PARSED 2 - -/* Events generated by the pipe. */ -#define NN_PIPE_IN 33987 -#define NN_PIPE_OUT 33988 - -struct nn_pipe; - -/* Associates opaque pointer to protocol-specific data with the pipe. */ -void nn_pipe_setdata (struct nn_pipe *self, void *data); - -/* Retrieves the opaque pointer associated with the pipe. */ -void *nn_pipe_getdata (struct nn_pipe *self); - -/* Send the message to the pipe. If successful, pipe takes ownership of the - messages. */ -int nn_pipe_send (struct nn_pipe *self, struct nn_msg *msg); - -/* Receive a message from a pipe. 'msg' should not be initialised prior to - the call. It will be initialised when the call succeeds. */ -int nn_pipe_recv (struct nn_pipe *self, struct nn_msg *msg); - -/* Get option for pipe. Mostly useful for endpoint-specific options */ -void nn_pipe_getopt (struct nn_pipe *self, int level, int option, - void *optval, size_t *optvallen); - - -/******************************************************************************/ -/* Base class for all socket types. */ -/******************************************************************************/ - -struct nn_sockbase; - -/* Any combination of these events can be returned from 'events' virtual - function. */ -#define NN_SOCKBASE_EVENT_IN 1 -#define NN_SOCKBASE_EVENT_OUT 2 - -/* To be implemented by individual socket types. */ -struct nn_sockbase_vfptr { - - /* Ask socket to stop. */ - void (*stop) (struct nn_sockbase *self); - - /* Deallocate the socket. */ - void (*destroy) (struct nn_sockbase *self); - - /* Management of pipes. 'add' registers a new pipe. The pipe cannot be used - to send to or to be received from at the moment. 'rm' unregisters the - pipe. The pipe should not be used after this call as it may already be - deallocated. 'in' informs the socket that pipe is readable. 'out' - informs it that it is writable. */ - int (*add) (struct nn_sockbase *self, struct nn_pipe *pipe); - void (*rm) (struct nn_sockbase *self, struct nn_pipe *pipe); - void (*in) (struct nn_sockbase *self, struct nn_pipe *pipe); - void (*out) (struct nn_sockbase *self, struct nn_pipe *pipe); - - /* Return any combination of event flags defined above, thus specifying - whether the socket should be readable, writable, both or none. */ - int (*events) (struct nn_sockbase *self); - - /* Send a message to the socket. Returns -EAGAIN if it cannot be done at - the moment or zero in case of success. */ - int (*send) (struct nn_sockbase *self, struct nn_msg *msg); - - /* Receive a message from the socket. Returns -EAGAIN if it cannot be done - at the moment or zero in case of success. */ - int (*recv) (struct nn_sockbase *self, struct nn_msg *msg); - - /* Set a protocol specific option. */ - int (*setopt) (struct nn_sockbase *self, int level, int option, - const void *optval, size_t optvallen); - - /* Retrieve a protocol specific option. */ - int (*getopt) (struct nn_sockbase *self, int level, int option, - void *optval, size_t *optvallen); -}; - -struct nn_sockbase { - const struct nn_sockbase_vfptr *vfptr; - struct nn_sock *sock; -}; - -/* Initialise the socket base class. 'hint' is the opaque value passed to the - nn_transport's 'create' function. */ -void nn_sockbase_init (struct nn_sockbase *self, - const struct nn_sockbase_vfptr *vfptr, void *hint); - -/* Terminate the socket base class. */ -void nn_sockbase_term (struct nn_sockbase *self); - -/* Call this function when stopping is done. */ -void nn_sockbase_stopped (struct nn_sockbase *self); - -/* Returns the AIO context associated with the socket. This function is - useful when socket type implementation needs to create async objects, - such as timers. */ -struct nn_ctx *nn_sockbase_getctx (struct nn_sockbase *self); - -/* Retrieve a NN_SOL_SOCKET-level option. */ -int nn_sockbase_getopt (struct nn_sockbase *self, int option, - void *optval, size_t *optvallen); - -/* Add some statistics for socket */ -void nn_sockbase_stat_increment (struct nn_sockbase *self, int name, - int increment); - -#define NN_STAT_CURRENT_SND_PRIORITY 401 - -/******************************************************************************/ -/* The socktype class. */ -/******************************************************************************/ - -/* This structure defines a class factory for individual socket types. */ - -/* Specifies that the socket type can be never used to receive messages. */ -#define NN_SOCKTYPE_FLAG_NORECV 1 - -/* Specifies that the socket type can be never used to send messages. */ -#define NN_SOCKTYPE_FLAG_NOSEND 2 - -struct nn_socktype { - - /* Domain and protocol IDs as specified in nn_socket() function. */ - int domain; - int protocol; - - /* Any combination of the flags defined above. */ - int flags; - - /* Function to create specific socket type. 'sockbase' is the output - parameter to return reference to newly created socket. This function - is called under global lock, so it is not possible that two sockets are - being created in parallel. */ - int (*create) (void *hint, struct nn_sockbase **sockbase); - - /* Returns 1 if the supplied socket type is a valid peer for this socket, - 0 otherwise. Note that the validation is done only within a single - SP protocol. Peers speaking other SP protocols are discarded by the - core and socket is not even asked to validate them. */ - int (*ispeer) (int socktype); - - /* This member is owned by the core. Never touch it directly from inside - the protocol implementation. */ - struct nn_list_item item; -}; - -#endif - diff --git a/includes/nanomsg/pubsub.h b/includes/nanomsg/pubsub.h deleted file mode 100755 index 04abb4f1f..000000000 --- a/includes/nanomsg/pubsub.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef PUBSUB_H_INCLUDED -#define PUBSUB_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_PROTO_PUBSUB 2 - -#define NN_PUB (NN_PROTO_PUBSUB * 16 + 0) -#define NN_SUB (NN_PROTO_PUBSUB * 16 + 1) - -#define NN_SUB_SUBSCRIBE 1 -#define NN_SUB_UNSUBSCRIBE 2 - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/reqrep.h b/includes/nanomsg/reqrep.h deleted file mode 100755 index b50e61bd0..000000000 --- a/includes/nanomsg/reqrep.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef REQREP_H_INCLUDED -#define REQREP_H_INCLUDED - -#include "nn.h" - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_PROTO_REQREP 3 - -#define NN_REQ (NN_PROTO_REQREP * 16 + 0) -#define NN_REP (NN_PROTO_REQREP * 16 + 1) - -#define NN_REQ_RESEND_IVL 1 - -typedef union nn_req_handle { - int i; - void *ptr; -} nn_req_handle; - -NN_EXPORT int nn_req_send (int s, nn_req_handle hndl, const void *buf, size_t len, int flags); -NN_EXPORT int nn_req_recv (int s, nn_req_handle *hndl, void *buf, size_t len, int flags); - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/survey.h b/includes/nanomsg/survey.h deleted file mode 100755 index ad594aa66..000000000 --- a/includes/nanomsg/survey.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - Copyright 2015 Garrett D'Amore - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef SURVEY_H_INCLUDED -#define SURVEY_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_PROTO_SURVEY 6 - -/* NB: Version 0 used 16 + 0/1. That version lacked backtraces, and so - is wire-incompatible with this version. */ - -#define NN_SURVEYOR (NN_PROTO_SURVEY * 16 + 2) -#define NN_RESPONDENT (NN_PROTO_SURVEY * 16 + 3) - -#define NN_SURVEYOR_DEADLINE 1 - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/tcp.h b/includes/nanomsg/tcp.h deleted file mode 100755 index 1d9077655..000000000 --- a/includes/nanomsg/tcp.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Copyright (c) 2012 Martin Sustrik All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef TCP_H_INCLUDED -#define TCP_H_INCLUDED - -#ifdef __cplusplus -extern "C" { -#endif - -#define NN_TCP -3 - -#define NN_TCP_NODELAY 1 - -#ifdef __cplusplus -} -#endif - -#endif - diff --git a/includes/nanomsg/transport.h b/includes/nanomsg/transport.h deleted file mode 100755 index 0ca9f351d..000000000 --- a/includes/nanomsg/transport.h +++ /dev/null @@ -1,258 +0,0 @@ -/* - Copyright (c) 2012-2014 Martin Sustrik All rights reserved. - Copyright (c) 2013 GoPivotal, Inc. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom - the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. -*/ - -#ifndef NN_TRANSPORT_INCLUDED -#define NN_TRANSPORT_INCLUDED - -#include "nn.h" - -#include "aio/fsm.h" - -#include "utils/list.h" -#include "utils/msg.h" -#include "utils/int.h" - -#include - -/* This is the API between the nanomsg core and individual transports. */ - -struct nn_sock; -struct nn_cp; - -/******************************************************************************/ -/* Container for transport-specific socket options. */ -/******************************************************************************/ - -struct nn_optset; - -struct nn_optset_vfptr { - void (*destroy) (struct nn_optset *self); - int (*setopt) (struct nn_optset *self, int option, const void *optval, - size_t optvallen); - int (*getopt) (struct nn_optset *self, int option, void *optval, - size_t *optvallen); -}; - -struct nn_optset { - const struct nn_optset_vfptr *vfptr; -}; - -/******************************************************************************/ -/* The base class for endpoints. */ -/******************************************************************************/ - -/* The best way to think about endpoints is that endpoint is an object created - by each nn_bind() or nn_connect() call. Each endpoint is associated with - exactly one address string (e.g. "tcp://127.0.0.1:5555"). */ - -struct nn_epbase; - -struct nn_epbase_vfptr { - - /* Ask the endpoint to stop itself. The endpoint is allowed to linger - to send the pending outbound data. When done, it reports the fact by - invoking nn_epbase_stopped() function. */ - void (*stop) (struct nn_epbase *self); - - /* Deallocate the endpoint object. */ - void (*destroy) (struct nn_epbase *self); -}; - -struct nn_epbase { - const struct nn_epbase_vfptr *vfptr; - struct nn_ep *ep; -}; - -/* Creates a new endpoint. 'hint' parameter is an opaque value that - was passed to transport's bind or connect function. */ -void nn_epbase_init (struct nn_epbase *self, - const struct nn_epbase_vfptr *vfptr, void *hint); - -/* Notify the user that stopping is done. */ -void nn_epbase_stopped (struct nn_epbase *self); - -/* Terminate the epbase object. */ -void nn_epbase_term (struct nn_epbase *self); - -/* Returns the AIO context associated with the endpoint. */ -struct nn_ctx *nn_epbase_getctx (struct nn_epbase *self); - -/* Returns the address string associated with this endpoint. */ -const char *nn_epbase_getaddr (struct nn_epbase *self); - -/* Retrieve value of a socket option. */ -void nn_epbase_getopt (struct nn_epbase *self, int level, int option, - void *optval, size_t *optvallen); - -/* Returns 1 is the specified socket type is a valid peer for this socket, - or 0 otherwise. */ -int nn_epbase_ispeer (struct nn_epbase *self, int socktype); - -/* Notifies a monitoring system the error on this endpoint */ -//void nn_epbase_set_error(struct nn_epbase *self, int errnum); -void nn_epbase_set_error(struct nn_epbase *self,int32_t errnum,char *fname,int32_t linenum); - -/* Notifies a monitoring system that error is gone */ -void nn_epbase_clear_error(struct nn_epbase *self); - -/* Increments statistics counters in the socket structure */ -void nn_epbase_stat_increment(struct nn_epbase *self, int name, int increment); - - -#define NN_STAT_ESTABLISHED_CONNECTIONS 101 -#define NN_STAT_ACCEPTED_CONNECTIONS 102 -#define NN_STAT_DROPPED_CONNECTIONS 103 -#define NN_STAT_BROKEN_CONNECTIONS 104 -#define NN_STAT_CONNECT_ERRORS 105 -#define NN_STAT_BIND_ERRORS 106 -#define NN_STAT_ACCEPT_ERRORS 107 - -#define NN_STAT_CURRENT_CONNECTIONS 201 -#define NN_STAT_INPROGRESS_CONNECTIONS 202 -#define NN_STAT_CURRENT_EP_ERRORS 203 - - -/******************************************************************************/ -/* The base class for pipes. */ -/******************************************************************************/ - -/* Pipe represents one "connection", i.e. perfectly ordered uni- or - bi-directional stream of messages. One endpoint can create multiple pipes - (for example, bound TCP socket is an endpoint, individual accepted TCP - connections are represented by pipes. */ - -struct nn_pipebase; - -/* This value is returned by pipe's send and recv functions to signalise that - more sends/recvs are not possible at the moment. From that moment on, - the core will stop invoking the function. To re-establish the message - flow nn_pipebase_received (respectively nn_pipebase_sent) should - be called. */ -#define NN_PIPEBASE_RELEASE 1 - -/* Specifies that received message is already split into header and body. - This flag is used only by inproc transport to avoid merging and re-splitting - the messages passed with a single process. */ -#define NN_PIPEBASE_PARSED 2 - -struct nn_pipebase_vfptr { - - /* Send a message to the network. The function can return either error - (negative number) or any combination of the flags defined above. */ - int (*send) (struct nn_pipebase *self, struct nn_msg *msg); - - /* Receive a message from the network. The function can return either error - (negative number) or any combination of the flags defined above. */ - int (*recv) (struct nn_pipebase *self, struct nn_msg *msg); -}; - -/* Endpoint specific options. Same restrictions as for nn_pipebase apply */ -struct nn_ep_options -{ - int sndprio; - int rcvprio; - int ipv4only; -}; - -/* The member of this structure are used internally by the core. Never use - or modify them directly from the transport. */ -struct nn_pipebase { - struct nn_fsm fsm; - const struct nn_pipebase_vfptr *vfptr; - uint8_t state; - uint8_t instate; - uint8_t outstate; - struct nn_sock *sock; - void *data; - struct nn_fsm_event in; - struct nn_fsm_event out; - struct nn_ep_options options; -}; - -/* Initialise the pipe. */ -void nn_pipebase_init (struct nn_pipebase *self,const struct nn_pipebase_vfptr *vfptr, struct nn_epbase *epbase); - -/* Terminate the pipe. */ -void nn_pipebase_term (struct nn_pipebase *self); - -/* Call this function once the connection is established. */ -int nn_pipebase_start (struct nn_pipebase *self); - -/* Call this function once the connection is broken. */ -void nn_pipebase_stop (struct nn_pipebase *self); - -/* Call this function when new message was fully received. */ -void nn_pipebase_received (struct nn_pipebase *self); - -/* Call this function when current outgoing message was fully sent. */ -void nn_pipebase_sent (struct nn_pipebase *self); - -/* Retrieve value of a socket option. */ -void nn_pipebase_getopt (struct nn_pipebase *self, int level, int option, - void *optval, size_t *optvallen); - -/* Returns 1 is the specified socket type is a valid peer for this socket, - or 0 otherwise. */ -int nn_pipebase_ispeer (struct nn_pipebase *self, int socktype); - -/******************************************************************************/ -/* The transport class. */ -/******************************************************************************/ - -struct nn_transport { - - /* Name of the transport as it appears in the connection strings ("tcp", - "ipc", "inproc" etc. */ - const char *name; - - /* ID of the transport. */ - int id; - - /* Following methods are guarded by a global critical section. Two of these - function will never be invoked in parallel. The first is called when - the library is initialised, the second one when it is terminated, i.e. - when there are no more open sockets. Either of them can be set to NULL - if no specific initialisation/termination is needed. */ - void (*init) (void); - void (*term) (void); - - /* Each of these functions creates an endpoint and returns the newly - created endpoint in 'epbase' parameter. 'hint' is in opaque pointer - to be passed to nn_epbase_init(). The epbase object can then be used - to retrieve the address to bind/connect to. These functions are guarded - by a socket-wide critical section. Two of these function will never be - invoked in parallel on the same socket. */ - int (*bind) (void *hint, struct nn_epbase **epbase); - int (*connect) (void *hint, struct nn_epbase **epbase); - - /* Create an object to hold transport-specific socket options. - Set this member to NULL in case there are no transport-specific - socket options available. */ - struct nn_optset *(*optset) (void); - - /* This member is used exclusively by the core. Never touch it directly - from the transport. */ - struct nn_list_item item; -}; - -#endif diff --git a/pnacl_main.h b/pnacl_main.h index c797102d3..b1d3ca9d5 100644 --- a/pnacl_main.h +++ b/pnacl_main.h @@ -156,6 +156,20 @@ void PNACL_message(const char* format, ...) #endif va_end(args); } +void PostMessage(const char* format, ...) +{ + va_list args; + va_start(args, format); +#ifdef __PNACL + struct PP_Var var; + var = VprintfToVar(format, args); + g_ppb_messaging->PostMessage(g_instance, var); + g_ppb_var->Release(var); +#else + printf(format,args); +#endif + va_end(args); +} /** * Given a message from JavaScript, parse it for functions and parameters. @@ -626,6 +640,7 @@ PSMainFunc_t PSUserMainGet() { return(example_main); } + #else int main(int argc, const char * argv[]) {