[Prev][Next][Index][Thread]

Re: ipc: help



Try:

IPC::(defun ip-address-string (address)
  (format nil "~D.~D.~D.~D"
          (ldb (byte 8 24) address)
          (ldb (byte 8 16) address)
          (ldb (byte 8 8)  address)
          (ldb (byte 8 0)  address)))

Pursue this thread under bug-acl-cl-http only.


References: