caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Q] About Unix Library of Ocaml
@ 2000-02-22  7:29 Bomshik Kim
  2000-02-22 12:34 ` Xavier Leroy
  0 siblings, 1 reply; 2+ messages in thread
From: Bomshik Kim @ 2000-02-22  7:29 UTC (permalink / raw)
  To: caml-list


 Hello~ 
 I Have Some Questions About Unix Library

1) Why do these exceptions occur ?

---------------------------------------------------------- 
        Objective Caml version 2.04

# open Unix ;;
# let theSocket = socket PF_INET SOCK_STREAM 0 ;;
val theSocket : Unix.file_descr = <abstr>
# let theSocket = socket PF_INET SOCK_DGRAM 0 ;;
val theSocket : Unix.file_descr = <abstr>
# let theSocket = socket PF_INET SOCK_RAW 0 ;;
Uncaught exception: Unix.Unix_error(1, "socket", "")
# let theSocket = socket PF_INET SOCK_SEQPACKET 0 ;;
Uncaught exception: Unix.Unix_error(45, "socket", "")
# 
----------------------------------------------------------

2) What is the differences of 4 socket_type ?
 Stream socket, Datagram socket, Raw socket, Sequenced packets socket

3) Error with using connection function  

 Could you let me know the error code(63)
 and why does this error occur? 

-----------------------------------------------------------
        Objective Caml version 2.04

# open Unix ;;
# let addr = inet_addr_of_string "***.***.***.***" ;;
val addr : Unix.inet_addr = <abstr>
# let socketAddr = ADDR_INET( addr , 21 ) ;;
val socketAddr : Unix.sockaddr = ADDR_INET (<abstr>, 21)
# let theSocket = socket PF_INET SOCK_STREAM 0 ;;
val theSocket : Unix.file_descr = <abstr>
# connect theSocket socketAddr ;;
Uncaught exception: Unix.Unix_error(63, "connect", "")
-----------------------------------------------------------


4) Where can I get more specific information(examples, docs, papers) 
  about ocaml library especially unix library 
  (in order to design & implement bigger network library of ocaml 
   for building web-server, web-browser etc... )

@ thank you 
-bskim@ropas.kaist.ac.kr




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2000-02-22 14:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-02-22  7:29 [Q] About Unix Library of Ocaml Bomshik Kim
2000-02-22 12:34 ` Xavier Leroy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).