Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリケーションは openldap スタックを使用して要求を LDAP サーバーに送信します。DSCP (IP_TOS) 値を設定したいのですが、これを行う方法はありますか? 前もって感謝します
確かに、LDAP ソケットで setsockopt を使用するだけです。
#include <sys/types.h> #include <sys/socket.h> int tos = IPTOS_LOWDELAY; if (setsockopt(sock, IPPROTO_IP, IP_TOS, (char *) &tos, sizeof(tos)) < 0 ) { printf("Failed setting TOS on socket"); abort(); }