Hello everyone. I am trying to send information over a TCP connection. I have the socket and stream setup but am having difficulties sending data over it. Upon researching, i found the Sb-bsd-sockets:socket-send would suit my needs. I then discovered that this became available in .9.12 and since i am running a Sparc machine with solaris, i am limited to only .9.11. So, i downloaded the sbcl .9.14 source code and attempted to compile it's sb-bsd-socket:socket-send function. I copied that into a file and made it a normal function instead of being part of the library (made it a defun). I then copied over many other functions that are called by it directly or indirectly. When i go to run the function though, i am told that (sockint::sendto()) is an undefined function. I attempted to require that library but that did not find anything. so my questions are as follows:
1. Is there another way to send data over the stream that does not use sb-bsd-sockets:socket-send (i assume there has to be)
OR
2. Does sockint::sendto belong to a library and if so, what is it?
thank you,
John
|