Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/e2deec5305c2f1057be3e7b1b1ead6789e980f216e57a7aa0b804dcd2b9d54d6fd00813d057bac364c049dcea140db109cc3daf8fc6172f41682925e0f7bad
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

48 lines
1.1 KiB
Text

import { Socket } from "node:net";
import { createNotImplementedError } from "../../../_internal/utils.mjs";
export class TLSSocket extends Socket {
authorized = false;
encrypted = true;
alpnProtocol = null;
authorizationError = new Error("[unenv] TLSSocket.authorizationError is not implemented yet!");
exportKeyingMaterial() {
throw createNotImplementedError("TLSSocket.exportKeyingMaterial");
}
getCipher() {
throw createNotImplementedError("TLSSocket.getCipher");
}
getPeerCertificate(_detailed) {
throw createNotImplementedError("TLSSocket.getPeerCertificate");
}
getCertificate() {
return null;
}
getEphemeralKeyInfo() {
return null;
}
getFinished() {}
getPeerFinished() {}
getProtocol() {
return null;
}
getSession() {}
getSharedSigalgs() {
return [];
}
getTLSTicket() {}
isSessionReused() {
return false;
}
renegotiate(options, callback) {
if (typeof callback === "function") {
callback(null);
}
}
setMaxSendFragment(size) {
return false;
}
disableRenegotiation() {}
enableTrace() {}
getPeerX509Certificate() {}
getX509Certificate() {}
}