ERROR_ADDRESS_ALREADY_ASSOCIATED - 1227 (0x4CB)

The network transport endpoint already has an address associated with it.

Updated: Feb 21, 2026

Technical Meaning

This error code, ERROR_ADDRESS_ALREADY_ASSOCIATED, indicates that an attempt was made to associate a network address with a transport endpoint that already has an address associated with it. This can occur in various networking scenarios where the system attempts to bind multiple addresses to the same endpoint.

Error Details

The error is specific to operations involving network transport endpoints, such as sockets or other communication channels used for network programming. The underlying issue is that a resource (the transport endpoint) has already been configured with an address, and another attempt to configure it with a different address fails due to this association.

Usage Context

This error typically occurs in applications that perform network operations using the Windows Sockets API (Winsock). It can also be encountered when working with other networking APIs or libraries that rely on similar underlying mechanisms for managing network connections and addresses.

Developer Interpretation

When encountering this error, developers should ensure that they are correctly managing address associations in their applications. Specifically, they need to verify that each transport endpoint is properly configured before attempting to bind it to a new address. This involves checking the current state of the endpoint and ensuring that no conflicting addresses are being used.

Related Errors

  • ERROR_NO_ADDRESS (10049): Indicates that there is no address associated with the specified endpoint, which might be encountered when attempting to bind an endpoint without a valid address.
  • WSAEADDRINUSE (10048): Suggests that another process has already bound the same address, indicating a conflict in address usage.

FAQ

Q: What does this error mean?

A: This error indicates that an attempt was made to associate a network address with a transport endpoint that already has an address associated with it.

Q: How can I resolve this issue?

A: Ensure that the transport endpoint is correctly configured and not already bound to another address before attempting to bind it again.

Summary

ERROR_ADDRESS_ALREADY_ASSOCIATED (1227) is a specific error code related to network programming in Windows. It indicates an attempt to associate multiple addresses with the same transport endpoint, which is not allowed. Developers should manage their network resources carefully to avoid this issue.