Search results

  1. Kinniken

    SSH through HTTP/HTTPs proxy?

    Hi, I would like to know if anyone here knows how to run an ssh connection though an HTTP or HTTPs proxy, in order to use port-forwarding. I've heard of the command-line utility corkscrew, which is supposed to do this, but I cannot manage to compile it - when running its configure command, I...
  2. Kinniken

    Using an Airport Express as an AP

    That's what I thought - still, before I buy one, can you confirm that an Airport Express would work to relay a wireless network between an iMac G3 using Airport (not extreme) and acting as a software base station and an other iMac also using regular Airport, and this without needing any wired...
  3. Kinniken

    [HOWTO] - SSH Tunneling for Mac Users

    Well, I would rather avoid buying new hardware at all, especially since I am pretty certain I can do that without it. BrickHouse supports TCP & UDP port forwarding, so I guess I can do it via command line as well (using BH is not an option since that would require me being physically present for...
  4. Kinniken

    [HOWTO] - SSH Tunneling for Mac Users

    Well, since I'm typing this inside an ssh session on iMac A, I assume 127.0.0.1 must be iMac A.I'm probably going to show that I am misunderstanding ssh tunnels completely, but what I was hoping this command would do is forward any connection on iMac A on port 23978 to the same port on iMac B...
  5. Kinniken

    [HOWTO] - SSH Tunneling for Mac Users

    Exactly, that's what I'm doing now. Sorry, but I can't do that. It's not possible to switch them, and the connection must remain via AirPort. A base station is too expensive to justify the cost. I'll look into it.
  6. Kinniken

    [HOWTO] - SSH Tunneling for Mac Users

    I have the following problem: - iMac A is connected to the web via cable ethernet - iMac B is connected to iMac A via AirPort, with iMac A acting as a software base station - I need a way for iMac B to be able to host AoE II internet games. AoE II uses TCP & UDP on port 23978 - I am setting...
  7. Kinniken

    Setting up port forwarding on Panther machine

    Great! Thanks for your help. Now I just need to figure out how to forward the AoE ports to an other machine. Should be fairly simple - I hope ;)
  8. Kinniken

    Finding out the ports used by AoE II

    Thanks! Now if I could find a tutorial on port-forwarding (come on, an OS X machine must be able to do that!) everything would be solved :)
  9. Kinniken

    Finding out the ports used by AoE II

    Hi, I need to find out the ports used by Ages of Empire II (Gold version). If anyone either knew them or could give me a way to find them myself, that would be great! Thanks.
  10. Kinniken

    Setting up port forwarding on Panther machine

    Hi, my problem is the following: I have two iMacs running Panther networked via Airport. iMac A is connected to the web via a cable modem and is set up as a software base station for iMac B, giving B an internet connection. iMac A has a non-local IP given by my ISP, iMac B only a local IP...
  11. Kinniken

    conio.c for OS X?

    Hi, does anyone know if the conio.c library is available for Mac OS X? TIA, Kinniken
  12. Kinniken

    Compiling X11 program with g++

    Thanks, apparently that was it. It is failing to find the "values.h" file though (via an import <values.h>). ANy idea of what this library is supposed to be and where I could get it?
  13. Kinniken

    Compiling X11 program with g++

    Hi, I need to compile a code exemple which includes X11 windows with g++; the code in question was intended for UNIX. When compiling, I get many failures to link to X11 libraries; I guess it is only a problem of those libraries being somewhere else on OS X. Can any one help? Simply knowing...
  14. Kinniken

    Using the iTMS from outside the US?

    Hi, I remember reading not long after the iTMS's launch of a way for non-Americans to buy songs by buying temporary American credit cards from a net-based company, or something like that. Has anyone ever heard of that, or better yet, used it yourself? With the euro rising fast, CD prices...
  15. Kinniken

    Best Java dev tools for Panther?

    Hi, I'm new to java programming and I need to develop small graphic programs for University. Right now I'm using the command-line Javac compiler, but I'm wondering what graphic RDE are available for Java on the mac, and which one I should pick if there are several. TIA, Kinniken
  16. Kinniken

    C++ compiler needed FAST

    Oh, and while logging on University computers and compiling there would indeed solve the problem, my University no longer allows that for security reasons :(
  17. Kinniken

    C++ compiler needed FAST

    You do not understand - I know how to use g++ on OS X. I did most of my project using it. However, g++ is not included with Mac OS X - it's part of the developer tools, which I do not have at my parents' home (I have them at my university dorm). I'm re-downloading them, but Apple's dev tools are...
  18. Kinniken

    C++ compiler needed FAST

    Hi, I have a programming assignment due for monday and I'm at home on my parents' iMac, which does not have the dev tools... I'm downloading the dev tools from Apple's website, but it looks like it is going to take 24 hours, which does not leave me time enough to finish my assignment. Does...
  19. Kinniken

    [g++] re-using an ifstream

    Hi, I need to read a file twice in one of my algorithm. My code, simplified, looks like that: ifstream ifile; ifile.open(fname.c_str(), ios::in); //lots of code reading data using .get() ifile.close(); ifile.open(fname.c_str(), ios::in); //an other batch of code using .get()...
  20. Kinniken

    String class for g++ under OSX?

    Nope, that's not it. I checked, the declaration and implementation are the same, and anyway the error message does not fit. Good attempt ;) Well, you solved my first problem (and thanks, I doubt I would have thought of that), I'll try to solve this myself. Kinniken
Back
Top