This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new d47faa5 Remove unused header file ink_inout.h
d47faa5 is described below
commit d47faa5c62d639b3ce874790b96d465230419d05
Author: Bryan Call <[email protected]>
AuthorDate: Mon Jul 8 09:17:41 2019 -0700
Remove unused header file ink_inout.h
---
include/tscore/ink_inout.h | 82 ----------------------------------------------
1 file changed, 82 deletions(-)
diff --git a/include/tscore/ink_inout.h b/include/tscore/ink_inout.h
deleted file mode 100644
index 4ef4c03..0000000
--- a/include/tscore/ink_inout.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/** @file
-
- A brief file description
-
- @section license License
-
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
-
-/**************************************************************************
- I/O Marshalling
-
-**************************************************************************/
-
-#pragma once
-
-// source of good macros..
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-#include <arpa/nameser.h>
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#define GETCHAR(s, cp) \
- { \
- (s) = *(cp)++; \
- }
-
-#define PUTCHAR(s, cp) \
- { \
- *(cp)++ = (s); \
- }
-
-#define GETLONGLONG(l, cp) \
- { \
- (l) = *(cp)++ << 8; \
- (l) |= *(cp)++; \
- (l) <<= 8; \
- (l) |= *(cp)++; \
- (l) <<= 8; \
- (l) |= *(cp)++; \
- (l) <<= 8; \
- (l) |= *(cp)++; \
- (l) <<= 8; \
- (l) |= *(cp)++; \
- (l) <<= 8; \
- (l) |= *(cp)++; \
- (l) <<= 8; \
- (l) |= *(cp)++; \
- }
-
-/*
- * Warning: PUTLONGLONG destroys its first argument.
- */
-#define PUTLONGLONG(l, cp) \
- { \
- (cp)[7] = l; \
- (cp)[6] = (l >>= 8); \
- (cp)[5] = (l >>= 8); \
- (cp)[4] = (l >>= 8); \
- (cp)[3] = (l >>= 8); \
- (cp)[2] = (l >>= 8); \
- (cp)[1] = (l >>= 8); \
- (cp)[0] = l >> 8; \
- (cp) += 8; \
- }