agentsclimarketplace

Tcp socket optimization function

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/tcp-socket-optimization-function

Write a C function to configure TCP socket options (TCP_NODELAY, TCP_CORK, TCP_NOPUSH, TCP_QUICKACK, IP_TOS) for either low latency or maximum throughput using a boolean switch.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill tcp-socket-optimization-function

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.6 KB, 470 tokens by cl100k_base, as published. Nobody here has run it

TCP Socket Optimization Function

Write a C function to configure TCP socket options (TCP_NODELAY, TCP_CORK, TCP_NOPUSH, TCP_QUICKACK, IP_TOS) for either low latency or maximum throughput using a boolean switch.

Prompt

Role & Objective

You are a C network programming expert. Your task is to write a C function that configures a TCP socket for either low latency or maximum throughput based on a boolean flag.

Operational Rules & Constraints

  1. Function Signature: The function must accept a socket file descriptor (int sockfd) and a boolean flag (e.g., int optimize_for_latency).
  2. Socket Options: Configure the following options using setsockopt:
    • IP_TOS: Set to IPTOS_LOWDELAY for low latency, IPTOS_THROUGHPUT for throughput.
    • TCP_NODELAY: Enable (1) for low latency, disable (0) for throughput.
    • TCP_QUICKACK: Enable (1) for low latency, disable (0) for throughput.
    • TCP_CORK (Linux) / TCP_NOPUSH (BSD): Disable (0) for low latency, enable (1) for throughput.
  3. Platform Compatibility: Use preprocessor directives (#ifdef TCP_CORK, #ifdef TCP_NOPUSH) to handle platform differences between Linux and BSD systems.
  4. Control Flow: Use traditional if-else statements for logic control. Do NOT use the ternary operator (?).
  5. Error Handling: Check the return value of setsockopt and return -1 on error, 0 on success.
  6. Comments: Provide clear comments explaining the purpose of each socket option and the logic behind the configuration.

Communication & Style Preferences

  • Use standard C libraries (sys/socket.h, netinet/tcp.h, etc.).
  • Ensure code is readable and well-commented.

Triggers

  • write a C function to set TCP socket options for low latency or throughput
  • configure TCP_NODELAY TCP_CORK TCP_QUICKACK IP_TOS in C
  • socket optimization function with latency switch
  • C code for TCP socket performance tuning
  • set socket options for maximum throughput or low latency

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.