+
+ LOG_HEX(5, "PPPLCP", q, 14);
+ tunnelsend(b, (q - b) + 14, t);
+}
+
+// Send CCP request for no compression
+static void initccp(tunnelidt t, sessionidt s)
+{
+ char b[500], *q;
+
+ if (!(q = makeppp(b, sizeof(b), NULL, 0, t, s, PPPCCP)))
+ return;
+
+ LOG(4, s, t, "Sending CCP ConfigReq for no compression\n");
+ *q = ConfigReq;
+ *(u8 *)(q + 1) = (time_now % 255) + 1; // ID
+ *(u16 *)(q + 2) = htons(4); // Length
+
+ LOG_HEX(5, "PPPCCP", q, 4);
+ tunnelsend(b, (q - b) + 4 , t);