Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: php/php-src
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: developersharif/php-src
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 5 commits
  • 1 file changed
  • 1 contributor

Commits on Aug 3, 2022

  1. Merge pull request #1 from php/master

    src updated
    developersharif authored Aug 3, 2022
    Configuration menu
    Copy the full SHA
    e076ffc View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Merge pull request #2 from php/master

    sync
    developersharif authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    4dba11a View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2023

  1. Configuration menu
    Copy the full SHA
    c466eb3 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Configuration menu
    Copy the full SHA
    8f7d284 View commit details
    Browse the repository at this point in the history
  2. Set default values for domain, type, and protocol in socket_create

    This commit modifies the `socket_create` function in the PHP Socket extension to set
    default values for the `domain`, `type`, and `protocol` parameters if the user
    doesn't provide any arguments.
    
    The default values are set as follows:
    
    - `domain`: Set to `AF_INET` (IPv4) on Windows systems, and `AF_UNIX` (Unix domain
      sockets) on non-Windows systems.
    - `type`: Set to `SOCK_STREAM` (TCP).
    - `protocol`: Set to `SOL_TCP`.
    
    If the user provides arguments to the `socket_create` function, those values will
    override the default values set by this commit.
    developersharif authored May 11, 2024
    Configuration menu
    Copy the full SHA
    153c26d View commit details
    Browse the repository at this point in the history
Loading