mirror of
https://github.com/springzfx/cgproxy.git
synced 2026-01-07 13:07:56 +08:00
14 lines
259 B
C++
14 lines
259 B
C++
#ifndef SOCKET_CLIENT_H
|
|
#define SOCKET_CLIENT_H
|
|
|
|
#include <stdlib.h>
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
namespace CGPROXY::SOCKET {
|
|
|
|
void send(const char *msg, int &status);
|
|
void send(const string msg, int &status);
|
|
|
|
} // namespace CGPROXY::SOCKET
|
|
#endif |