Unix and Linux Discussions Tagged with connect |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
2,203 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
44,039 |
Shell Programming and Scripting |
|
|
|
7 |
4,948 |
Shell Programming and Scripting |
|
|
|
2 |
23,428 |
Shell Programming and Scripting |
|
|
|
0 |
5,231 |
Shell Programming and Scripting |
|
|
|
1 |
3,724 |
Shell Programming and Scripting |
|
|
|
7 |
20,433 |
Solaris |
|
|
|
4 |
9,972 |
Shell Programming and Scripting |
|
|
|
0 |
2,899 |
OS X Support RSS |
|
|
|
0 |
6,157 |
HP Server News and Podcasts RSS |
|
|
|
0 |
2,611 |
OS X Support RSS |
|
|
|
0 |
3,438 |
Security Advisories (RSS) |
|
|
|
0 |
2,271 |
OS X Support RSS |
|
|
|
1 |
3,280 |
AIX |
|
|
|
0 |
1,207 |
Software Releases - RSS News |
|
|
|
0 |
2,726 |
OS X Support RSS |
|
|
|
1 |
5,075 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,135 |
Linux |
|
|
|
0 |
2,614 |
HP Server News and Podcasts RSS |
|
|
|
0 |
1,651 |
UNIX and Linux RSS News |
|
|
|
3 |
6,878 |
Solaris |
|
|
|
2 |
8,707 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,699 |
IP Networking |
|
|
|
1 |
3,219 |
Solaris |
|
|
|
0 |
1,387 |
Software Releases - RSS News |
|
|
|
1 |
2,665 |
AIX |
|
|
|
1 |
18,009 |
Shell Programming and Scripting |
|
|
|
0 |
1,215 |
Software Releases - RSS News |
|
|
|
0 |
1,137 |
Software Releases - RSS News |
|
|
|
0 |
2,160 |
UNIX and Linux RSS News |
|
|
|
1 |
15,895 |
Gentoo |
|
|
|
2 |
3,138 |
Shell Programming and Scripting |
|
|
|
2 |
4,606 |
Linux |
|
|
|
8 |
6,388 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
5,794 |
Programming |
|
|
|
2 |
11,546 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
31,185 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,699 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
4,785 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
4,170 |
UNIX for Advanced & Expert Users |
explain_connect_or_die(3) Library Functions Manual explain_connect_or_die(3)
NAME
explain_connect_or_die - initiate a connection on a socket and report errors
SYNOPSIS
#include <libexplain/connect.h>
void explain_connect_or_die(int fildes, const struct sockaddr *serv_addr, int serv_addr_size);
DESCRIPTION
The explain_connect_or_die function is used to call the connect(2) system call. On failure an explanation will be printed to stderr,
obtained from explain_connect(3), and then the process terminates by calling exit(EXIT_FAILURE).
This function is intended to be used in a fashion similar to the following example:
explain_connect_or_die(fildes, serv_addr, serv_addr_size);
fildes The fildes, exactly as to be passed to the connect(2) system call.
serv_addr
The serv_addr, exactly as to be passed to the connect(2) system call.
serv_addr_size
The serv_addr_size, exactly as to be passed to the connect(2) system call.
Returns:
This function only returns on success. On failure, prints an explanation and exits.
SEE ALSO
connect(2)
initiate a connection on a socket
explain_connect(3)
explain connect(2) errors
exit(2) terminate the calling process
COPYRIGHT
libexplain version 0.52
Copyright (C) 2008 Peter Miller
explain_connect_or_die(3)