Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: experimental/visual_studio_plugin/src/debug_conn/debug_socket_impl.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/visual_studio_plugin/src/debug_conn/debug_socket_impl.h
diff --git a/experimental/visual_studio_plugin/src/debug_conn/debug_socket_impl.h b/experimental/visual_studio_plugin/src/debug_conn/debug_socket_impl.h
deleted file mode 100644
index 2ad0e8d27f52cf24f96337186f36c2851c1449ad..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/debug_conn/debug_socket_impl.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can
- * be found in the LICENSE file.
- */
-
-#ifndef NATIVE_CLIENT_SRC_TRUSTED_DEBUG_STUB_DEBUG_SOCKET_IMPL_H_
-#define NATIVE_CLIENT_SRC_TRUSTED_DEBUG_STUB_DEBUG_SOCKET_IMPL_H_ 1
-
-
-#include "native_client/src/include/portability.h"
-
-EXTERN_C_BEGIN
-
-// Maximum string length of a Network Address
-// For IPv4 addresses this is really only xxx.xxx.xxx.xxx:yyyyy
-// But we allow larger to deal with name resolution in the future
-#define MAX_ADDR_LEN 256
-
-typedef enum {
- DSE_ERROR = -1,
- DSE_TIMEOUT = 0,
- DSE_OK = 1
-} DSError;
-
-#define DEBUG_SOCKET_BAD ((void *) -1)
-typedef void *DSHandle;
-
-// Platform dependant calls
-DSError DebugSocketInit();
-DSError DebugSocketExit();
-DSError DebugSocketCreate(DSHandle *handle);
-DSError DebugSocketClose(DSHandle handle);
-int DebugSocketGetError(int can_block);
-
-// Platform independant calls
-DSError DebugSocketAccept(DSHandle srv, DSHandle *sock, char *addr, uint32_t max);
-DSError DebugSocketBind(DSHandle handle, const char *addr);
-DSError DebugSocketConnect(DSHandle handle, const char *addr);
-DSError DebugSocketListen(DSHandle handle, uint32_t cnt);
-DSError DebugSocketRecv(DSHandle handle, void *data, int32_t max, int32_t *len);
-DSError DebugSocketSend(DSHandle handle, void *data, int32_t max, int32_t *len);
-DSError DebugSocketRecvAvail(DSHandle handle, uint32_t ms_usec);
-DSError DebugSocketSendAvail(DSHandle handle, uint32_t ms_usec);
-
-DSError DebugSocketStrToAddr(const char *saddr, void *daddr, uint32_t len);
-DSError DebugSocketAddrToStr(void *saddr, uint32_t len, char *daddr, uint32_t max);
-DSError DebugSocketAddrSize(uint32_t *len);
-DSError DebugSocketLogError(const char *file, int line, int block_ok);
-
-EXTERN_C_END
-
-#endif
-

Powered by Google App Engine
This is Rietveld 408576698