Changeset 003c1216d89735a273e075c66a3af0f7655a54ae

Show
Ignore:
Timestamp:
29/05/08 23:32:11 (6 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1212096731 +0200
git-parent:

[a8f72d056fc842e3d338971ebf2a7511c59855a5]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1212096731 +0200
Message:

standard: Special case for AI_NUMERICSERV (if not defined).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/stream_out/standard.c

    r3ead0c7 r003c121  
    395395            .ai_socktype = SOCK_DGRAM, 
    396396            .ai_protocol = 0, 
    397             .ai_flags = AI_NUMERICHOST | AI_NUMERICSERV 
     397            .ai_flags = AI_NUMERICHOST 
     398#ifdef AI_NUMERICSERV 
     399                      | AI_NUMERICSERV 
     400#endif 
    398401        }; 
    399402        char *shost = var_GetNonEmptyString (p_access, "src-addr");