-
Notifications
You must be signed in to change notification settings - Fork 397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OMRSOCK API: Implement omrsock_connect and omrsock_accept functions on Unix #5043
Closed
6 of 8 tasks
Labels
Comments
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 14, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 14, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 15, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 15, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
8 tasks
8 tasks
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 28, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 28, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 28, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 29, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 29, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 30, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 30, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 30, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
Apr 30, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 3, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 3, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 3, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 3, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 5, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 5, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 5, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 5, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 6, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 6, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
9 tasks
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 6, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 6, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 13, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 13, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 13, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 14, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 19, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 19, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 19, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 19, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 20, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 20, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 21, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 21, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 25, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 25, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 25, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 25, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 25, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
caohaley
pushed a commit
to caohaley/omr
that referenced
this issue
May 25, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
kbeaton2-UNB3035
pushed a commit
to CAS-Atlantic/omr
that referenced
this issue
Jun 23, 2020
omrsock_connect and omrsock_accept implemented - omrsock_connect allows the client application to attempt to connect with a server address. - omrsock_accept allows the server application to accept incoming connection requests. It also allocates a socket structure for the new socket that the server uses to talk to the connected client. The old socket is still used to listen to requests. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
kbeaton2-UNB3035
pushed a commit
to CAS-Atlantic/omr
that referenced
this issue
Jun 23, 2020
Added test cases for connect and accept functions - Added a test case for setting up an IPv4 stream connection, using a INADDR_ANY server and localhost client. - Added a test case for setting an IPv4 datagram connection, although no real connection is set. Used connect function to set up peer address. Issue: eclipse-omr#5043 Signed-off-by: Haley Cao <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Working on Issue: #4102
/cc @rwy0717 @mpirvu
Omrsock functions to be implemented:
omrsock_connect
,omrsock_accept
Descriptions
omrsock_connect
is usually called by the client that wishes to connect to a server.If the initiating socket is for datagram connections,
omrsock_connect
will set up peer address but no connection is actually made. When peer address is set, this datagram socket will be only for sending and receiving from the peer address. The peer can be switched with consecutive calls toomrsock_connect
and can be disconnected from the peer with a call toomrsock_connect
with NULL address.If the initiating socket is for stream connection,
omrsock_connect
will attempt to establish a connection with the server address passed in. It will attempt to connect for a time interval and either fail or succeed. The nonblock functionality will be implemented and added in the future.omrsock_accept
is called to accept the first connection in the queue of pending connections. It will then return a new socket specifically for that connection.Implementation Details:
The
omrsock_connect
function will be set up to call the system socket api connect function. It will be tested to see if it works on all Unix systems and if there is anything to be added.The
omrsock_accept
function will call the system socket api accept function and will allocate memory for a newOMRSocket
structure for the newly returned socket descriptor for the connection. This socket structure will be released when the user callsomrsock_close
to close the socket. It is the user's responsibility to close the sockets at the end of their program.Unix Progress Tracker
Implement omrsock_getaddrinfo_create_hints (and socket per thread buffer). PR:Added a per thread buffer and related tests for OMR socket API #4555
Implement OMRAddrInfoNode element extraction (omrsock_getaddrinfo_length, family, socktype, protocol). Issue:OMRSOCK API: Implement OMRAddrInfoNode Element Extraction Functions on Unix #4745, PR:Added Unix Implementations for Element Extracting Functions in OMRSOCK API #4738
Implementing omrsock_getaddrinfo. Issue:OMRSOCK API: Implement omrsock_getaddrinfo function on Unix #4794 PR:Added Unix Implementation for omrsock_getaddrinfo and omrsock_freeaddrinfo in OMRSOCK API #4832
Implementing omrsock_socket (constants definition of socket types) and omrsock_close. Issue:OMRSOCK API: Implement omrsock_socket Function on Unix #4795 PRs:Added constants for Unix Implementations in OMRSOCK API #4878, Added Unix Implementations for omrsock_socket and omrsock_close in OMRSOCK API #4887
Implementing omrsock_bind and omrsock_listen Issue:OMRSOCK API: Implement omrsock_bind and omrsock_listen functions on Unix #4919 PRs:Setting Up Socket Address for Bind and Listen #4974, Implement omrsock_bind and omrsock_listen on Unix #5034
Implementing omrsock_connect and omrsock_accept
Implementing omrsock_send and receive
Implementing omrsock_sendto and recvfrom
The text was updated successfully, but these errors were encountered: