123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef Pipe_H
- #define Pipe_H
- #include "memory/Allocator.h"
- #include "exception/Except.h"
- #include "interface/Iface.h"
- #include "util/events/EventBase.h"
- #include "util/Linker.h"
- Linker_require("util/events/libuv/Pipe.c")
- struct Pipe;
- typedef void (* Pipe_callback)(struct Pipe* p, int status);
- struct Pipe
- {
- struct Iface iface;
- /** the name as provided by the user eg: "foo" */
- const char* const name;
- /** The name of the file eg: "/tmp/cjdns_pipe_foo" */
- const char* const fullName;
- /** A pointer to the platform dependent file descriptor or handle. */
- void* fd;
- void* userData;
- struct EventBase* const base;
- Pipe_callback onConnection;
- Pipe_callback onClose;
- struct Log* logger;
- };
- #define Pipe_PADDING_AMOUNT 512
- #define Pipe_BUFFER_CAP 4000
- #ifndef Pipe_PREFIX
- #ifdef win32
- #define Pipe_PREFIX "\\\\.\\pipe\\cjdns_pipe_"
- #elif defined(android)
- #define Pipe_PREFIX "/data/local/tmp/cjdns_pipe_"
- #else
- #define Pipe_PREFIX "/tmp/cjdns_pipe_"
- #endif
- #endif
- struct Pipe* Pipe_named(const char* name,
- struct EventBase* eb,
- struct Except* eh,
- struct Allocator* userAlloc);
- struct Pipe* Pipe_forFiles(int inFd,
- int outFd,
- struct EventBase* eb,
- struct Except* eh,
- struct Allocator* userAlloc);
- #endif
|