最近我正在为我们的软件系统做 QOS,它由 apache+php 服务器应用程序和一个 C++ 服务器应用程序组成。我们希望使用 IP 标头中的 TOS 字段来区分不同的服务。
我知道我们可以通过调用 setsockopt(fd, IPPROTO_IP, &TosVal, ...) 来为 c++ 应用程序流量设置 TOS 字段。但是,我不知道如何使用 PHP 为 apache 的肥皂流量数据包设置 TOS 字段。我有以下问题:
1) Is it possible to set the TOS field when we are using php+apache to
send a soap response.
2) If the answer to question 1) is yes, then how?