php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #9190 Can't bind UNIX socket
Submitted: 2001-02-09 06:26 UTC Modified: 2001-03-22 08:26 UTC
From: vvtk at stealthcomp dot com Assigned:
Status: Closed Package: Sockets related
PHP Version: 4.0.4pl1 OS: RedHat 6.1
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
11 - 2 = ?
Subscribe to this entry?

 
 [2001-02-09 06:26 UTC] vvtk at stealthcomp dot com
$address = "/tmp/socket.sock";

if (($sock = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) {
    echo "socket() failed: reason: " . strerror ($sock) . "\n";
	exit;
}

if (($ret = bind ($sock, $address)) < 0) {
    echo "bind() failed: reason: $ret " . strerror ($ret) . "\n";
	exit;
}

===========
I get: bind() failed: reason: -22 Invalid argument

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-03-22 08:26 UTC] sniper@php.net
Fixed in CVS.

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 10:01:29 2024 UTC