This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <fcntl.h> | |
#include <iostream> | |
#include <string> | |
#include <unistd.h> | |
#include <sys/wait.h> | |
#include <cstring> | |
#include "z3_pipe.h" | |
#define ensure(b) ensure_helper(b, __FILE__, __FUNCTION__, __LINE__) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Dead simple com.apple.companion_proxy client. | |
This allows you to forward ports bound to your Watch's 127.0.0.1 to a random port on your iPhone. | |
-- qwertyoruiop, 2016 | |
*/ | |
#include <stdio.h> |