When I read osip.h, I found two struct.
291 struct osip_srv_entry {
292 char srv[512];
293 int priority;
294 int weight;
295 int rweight;
296 int port;
297 };
309 struct osip_srv_record {
310 char name[512];
311 char protocol[64];
312 struct osip_srv_entry srventry[10];
313 };
What does srv mean here? Is it "Server"? What's the usage of these two struct?